Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
The syntax here for summing the records for the previous month is not working.
Any suggestions on the correct syntax
=Sum ({$<[Period (FDPERD)]={"=(only([Period (FDPERD)]))-1"}>}[TR Outstanding (TROUTV)])
Thank you
You could try:
sum( {$<Period= {"$(=Num(Period-1))"}>} [TR Outstanding (TROUTV)])
You could try:
sum( {$<Period= {"$(=Num(Period-1))"}>} [TR Outstanding (TROUTV)])
I have 2 suggestions for you:
sum( {$<[Period (FDPERD)] = {$(=Only([Period (FDPERD)])-1)}>} [TR Outstanding (TROUTV)])or
sum( {$<[Period (FDPERD)] = {$(#=Only([Period (FDPERD)])-1)}>} [TR Outstanding (TROUTV)])Hope these work!
Best,
Maya