Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello Everyone,
I have an issue with current selection.As per client req. when nothing is selected for year,month and week then default selection should select current year,current month with max week of that month.I have week as 1,2,3,4,5....and so on so my issue is that when i write an expression for current selection with max month and max week it is selecting 53 week and 12 month...please help me on this it is urgent as need to show the client by end of the day
Thanks in advance
Ferha Jafri
hi. I think you should create an Action for autoselect values and attach this Action for OnOpen document trigger.
in the action you should create 3 Actions with such sequence: Year -> Month -> Week
Expressions should be like this:
for Year: =year(Today())
for Month: =month(Today())
for week: =max(Week)
If you don't want create special sequence, you can create special expression for week like this:
=max({<Month = {$(=month(today()))}>} Week)
hi. I think you should create an Action for autoselect values and attach this Action for OnOpen document trigger.
in the action you should create 3 Actions with such sequence: Year -> Month -> Week
Expressions should be like this:
for Year: =year(Today())
for Month: =month(Today())
for week: =max(Week)
If you don't want create special sequence, you can create special expression for week like this:
=max({<Month = {$(=month(today()))}>} Week)
Thank you so much it worked for me