Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
In the attached example I have a column "Expense Type" which has actual and budget. I am trying to have a column with the actual expenses, then a column with budget expenses and a final variance column. Any suggestions?
Perhaps this:
Actual = sum({<"Expenses Type"={'Actual'}>} "Expenses Amount")
Budget = sum({<"Expenses Type"={'Budget'}>} "Expenses Amount")
Variance = Actual - Budget
Perhaps this:
Actual = sum({<"Expenses Type"={'Actual'}>} "Expenses Amount")
Budget = sum({<"Expenses Type"={'Budget'}>} "Expenses Amount")
Variance = Actual - Budget
Thank you very much!