Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Creating a new measure based on 2 existing measures

How would I create a new measure based on two "defined" measures that are in my dataset.

The two defined measures as Job.Stop.AmountBillable and Job.StopAmountInvoiced

I want to create a calculation or measure that shows me the amount not billed, i.e. AmountBillable - AmountInvoiced.

In excel, I would do =(Job.StopAmountBillable)-(Job.StopAmountInvoiced)

I did some research on set analysis but I don't see how that could work....

1 Solution

Accepted Solutions
don_qlikview
Creator
Creator

In the script you can write (Job.StopAmountBillable)-(Job.StopAmountInvoiced) as [amount not billed]

View solution in original post

4 Replies
phaneendra_kunc
Partner - Specialist III
Partner - Specialist III

have you tried creating a new measure like below?

sum(Job.StopAmountBillable)-sum(Job.StopAmountInvoiced)

don_qlikview
Creator
Creator

In the script you can write (Job.StopAmountBillable)-(Job.StopAmountInvoiced) as [amount not billed]

Not applicable
Author

Thank you! I didn't know you could have the subtraction in there   New to Qlik and have no scripting background...learning curve!

Not applicable
Author

Thank you! This is something I'll want to measure moving forward!