Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a table view that I would like to have a rolling 12 month from a selected date which would be the first column then the previous month and so on.
is this possible with an expression.
so If I select Jan 2023 in the drop down filter I would like the table to show
Jan 2023 | Dec 2022 | Nov 2022 | Oct 2022 and so on.
Thanks
sum({<[Master Date]={">$(=AddMonths(Max([Master Date]),-1))"}, [Data Type]={'Actual'}>} Value)
get rid of the if its unnecessary.
sum({<[Date]={">$(=AddMonths(Max([Date]),-12))"}>} Sales)
Thanks for that but if I wanted to now limit it a little bit more
sum(if({<[Master Date]={">$(=AddMonths(Max([Master Date]),-1))"}>} and [Data Type]='Actual', Value))
how could I do this?
sum(if({<[Master Date]={">$(=AddMonths(Max([Master Date]),-1))"}, [Data Type]={'Actual'}>} Value))
Tried that previously and I get an Error in the expression: if takes 2-3 parameters.
sum({<[Master Date]={">$(=AddMonths(Max([Master Date]),-1))"}, [Data Type]={'Actual'}>} Value)
get rid of the if its unnecessary.
Thanks you so much
doesnt seem to work