Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

How to minus the values in text object?

Hi Team,

I have a value as 250 in one text object and 150 in another text object, now need to minus those value and put into new text object.

How to use minus operator in qlikview!?

Regards,

Ashok Ravichandran

4 Replies
vipin_mishra479
Creator II
Creator II

you can use

(Exp1 - Exp2)

Where Exp1 give you 250 and Exp 2 give you 150

sunny_talwar

You can also use RangeSum() like this

=RangeSum(Exp1, -Exp2)

rajeshqvd
Creator II
Creator II

Use variables like Let v1 = Exp1; Let v2 = Exp2;

($(v1)-$(v2))

Anonymous
Not applicable
Author

Thanks for speedy reply guys!!