Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
currently my variable value is
vCurrentWeekk=Week(today())
so in expression I used : =Count({<WeekNumber={$(=vThisWeek)}>}id) this will only only this week data if I select other week in filter it is not reflecting so I tried below expression but its giving error
=if(GetSelectedCount()=0,week(today(),max(WeekNumber)))
Have you tried above?
yes kush,
I just missed to pass the filed inside the get function,its working now.
You could use this too?
=if(GetFieldSelections(WeekNumber)=0,week(today()),max(WeekNumber))
yes used the same