Forum Discussion
2 Replies
- KyleMcKinniesQrew MemberThat worked great, thanks again. One more question, is there a formula that could count the number of entries (days) selected in the multi-select field?
------------------------------
Kyle McKinnies
------------------------------- AhuvaBrownQrew CadetAre the dates working dynamically, meaning they update according to the current day?
For counting the selections, try converting the multi-select text to regular text and do something like this:
Count(
Part([field],1,";"),
Part([field],2,";"),... up to max values
)
I think you might have to trim each part or a blank space will be added to the count. Trim(Part([field],1,";))
------------------------------
Ahuva Brown
------------------------------