What is the best approach to show a tab only, i.e. between May 1 and June 1 of each year.
Thanks
What is the best approach to show a tab only, i.e. between May 1 and June 1 of each year.
Thanks
Make sure the dates are within the user profile table, or use some other logic, such as single value columns, to retrieve those dates from elsewhere and make them show up in the user table. Then add the appropriate tab visibility conditions comparing those dates to Today.
I have a slightly different interpretation of your question than Jeff, so this may or may not be what you are looking for:
Month(Now)
That would make the tab visible only for the month of May.
Well that’s a lot easier.
Is it possible to use from 05/01 to 06/01?
Just to be clear, it needs to be visible on the 1st of June, but not on the 2nd of June - yes?
To make a tab visible between those two dates (inclusive), you need an extra column:
Month(Now)*100
+Day(Now)
Darren’s suggestion worked for me. Thank you.
Thanks
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.