Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
In my pivot Table the following expression is working fine
=SUM({<I_MONTH = {"$(=Only(I_MONTH))"},I_DAY = {">25"}>} [PREMIUM])
But the expression given below returns 0 value
=SUM({<I_MONTH ={"$(=Only([1_MONTH])-1)"},I_DAY = {">25"}>} [PREMIUM])
Can some pls tell me what is wrong with 2nd expression
maybe this difference is a problem:
Only(I_MONTH
Only([1_MONTH])-
Use the below expression as 2nd expression and see if this works, I have added () to Only(1_MONTH)
=SUM({<I_MONTH ={"$(=(Only([1_MONTH]))-1)"},I_DAY = {">25"}>} [PREMIUM])
Can you try below:
=SUM({<I_MONTH ={"$(=$(=Only([1_MONTH]))-1)"},I_DAY = {">25"}>} [PREMIUM])
Thanks,
Angad
Two possibilities:
Hi,
What is your I_MONTH values format? Is it 1,2,3,4,etc. If it is numeric then try below expression
=SUM({<I_MONTH ={"$(=Only([I_MONTH])-1)"},I_DAY = {">25"}>} [PREMIUM])
Also you are using 1_MONTH (numeric month) please check.
Regards,
Jagan.