Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi ...why don't my week filter will not work here. I have made the selections on week filter but data will not change here.i am not understanding reason for this.
=num(sum({$< FW = {$(vCurrentWeek)}>}Value)/1000000,'$#,##.##M')
To make selections on weeks, just use the expression sum(Value) and have a list box on the Weeks field.
you can try this.
if(GetselectedCount(WeekFieldName)>0,
num(sum({$< FW = P(Week Field Name)>}Value)/1000000,'$#,##.##M'),
num(sum({$< FW = {$(vCurrentWeek)}>}Value)/1000000,'$#,##.##M'))
This will give the Current Week value, if there is no selection in the Week List Box.