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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
NavinReddy
Creator II
Creator II

Script Wise Subtract

Dear Experts,

I want to apply Subtract in Script Wise

if [Acct 3]='LOB'  i want to subtract [Acct 3]='LOB' - [Acct 6]='CFVTO00049-Tech & Ops Allocations, Internal'

i am writing bellow formula,its not working suggest me is there any way to solve this Issue

IF([Acct 3]='LOB' ,[Acct 3]='LOB'-[Acct 6]='CFVTO00049-Tech & Ops Allocations, Internal',[Acct 3])as [Acct3],

Thanks In Advance

Niranjan

1 Reply
MarcoWedel

can you please post some sample data with description of the expected result?

What do you intend with

[Acct 3]='LOB'-[Acct 6]='CFVTO00049

?

If it's two logical expressions you like to subtract, then it would be

([Acct 3]='LOB')-([Acct 6]='CFVTO00049)

because of operator priorities.

regards

Marco