_giles_ Posted August 20, 2012 Posted August 20, 2012 Dear All, I have the following which works fine if the field "day" contains a single value like "Monday", but fails if it contains multiple values (like "Monday Wednesday Thursday"). Can you advise? If( day = DayName ( Get ( CurrentDate ) ); "Current" ; "" ) Many thanks
comment Posted August 20, 2012 Posted August 20, 2012 Try = If ( not IsEmpty ( FilterValues ( DayName ( Get ( CurrentDate ) ) ; day ) ) ; "Current" ) This is assuming the 'day' field contains a return-separated list of day names.
Recommended Posts
This topic is 4476 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