Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I'm hoping someone can help with this expression. The first expression I have working with no issues:
='Actual - ' & num(sum([AE Expense Amount]), '$#,##0')
This one not so much. I would like to get the sum of the expense field for the current year inly without having to hard code it. Any help is greatly appreciated.
='Actual - ' & num(sum({<Year={$(=$(vCurrYear))},[AE Expense Amount]), '$#,##0')
you were missing the analysis closing bracket
='Actual - ' & num(sum({<Year={"$(=$(vCurrYear))"}>}[AE Expense Amount]), '$#,##0')
you were missing the analysis closing bracket
='Actual - ' & num(sum({<Year={"$(=$(vCurrYear))"}>}[AE Expense Amount]), '$#,##0')
Thank you greatly!!