serp Posted June 26, 2005 Posted June 26, 2005 How can I make a simple formula in order to get abreviations from a field ("Task_days") with all week days? I was trying to made it with Let & Choose
-Queue- Posted June 27, 2005 Posted June 27, 2005 Let( A = Substitute( Filter( Lower(task_days); "adefhimnorstuwy" ); ["sunday"; "SU-"]; ["monday"; "MO-"]; ["tuesday"; "TU-"]; ["wednesday"; "WE-"]; ["thursday"; "TH-"]; ["friday"; "FR-"]; ["saturday"; "SA-"] ); Left( A; Length(A) - 1 ) )
Ender Posted June 28, 2005 Posted June 28, 2005 "adefhimnorstuwy" Making up words again, Queue? Looks kind of like anagram material. How about: "DamWishyFortune"
serp Posted June 28, 2005 Author Posted June 28, 2005 Let( A = Substitute( Filter( Lower(task_days); "adefhimnorstuwy" ); ["sunday"; "SU-"]; ["monday"; "MO-"]; ["tuesday"; "TU-"]; ["wednesday"; "WE-"]; ["thursday"; "TH-"]; ["friday"; "FR-"]; ["saturday"; "SA-"] ); Left( A; Length(A) - 1 ) ) Perfect
Recommended Posts
This topic is 7087 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now