Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Actual Column / Budget Column / Variance Column

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?

1 Solution

Accepted Solutions
johnw
Champion III
Champion III

Perhaps this:

Actual = sum({<"Expenses Type"={'Actual'}>} "Expenses Amount")
Budget = sum({<"Expenses Type"={'Budget'}>} "Expenses Amount")
Variance = Actual - Budget

View solution in original post

2 Replies
johnw
Champion III
Champion III

Perhaps this:

Actual = sum({<"Expenses Type"={'Actual'}>} "Expenses Amount")
Budget = sum({<"Expenses Type"={'Budget'}>} "Expenses Amount")
Variance = Actual - Budget

Not applicable
Author

Thank you very much!