Hi All.
I am looking for a way to have my view appear as follows: Twistie: Show week of 6/26 - 6/27 and when the twistie is expanded all the dates that fall between 6/16 and 6/27 would appear. I am not sure how to go about doing this so I am turning to the Pro’s. All help is appreciated.
Thanks : )
Subject: Now thats a new one. What happened to your old question?
Subject: Show days of week in a view
To the best of my knowledge, Domino won’t give you the day, you have to determine it. You end up with a column formula like:
@If(NumericDay=1; “Sunday”; NumericDay=2; “Monday”; …; “Saturday”)
Subject: Try…
nums := @Text(1 : 2 : 3 : 4 : 5 : 6 : 7);wdnames := “Sunday” : “Monday” : “Tuesday” : “Wednesday” : “Thursday” : “Friday” : “Saturday”;
wd := @Text(@WeekDay(YourDateField));
@Replace(wd; nums; wdnames)