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

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
anthony_kinsell
Creator
Creator

Set Analysis Formula


Hi,

I have the below formula as an expression:

 

Sum ({<FundHeading -= {'Residential Sales'}>} DevBudgetAmount)

I want to change the FundHeading to Right(FundHeading,5) but it doesn't seem as simple as :

Sum ({<IF(Right(FundHeading,5)) -= {'Sales'}>} DevBudgetAmount)

Anyone point me in the right direction?

1 Solution

Accepted Solutions
Nicole-Smith

Something like this:

sum({<FundHeading-={'*Sales'}>}DevBudgetAmount)

View solution in original post

4 Replies
Nicole-Smith

Something like this:

sum({<FundHeading-={'*Sales'}>}DevBudgetAmount)

MK_QSL
MVP
MVP

Try Something Below

Sum ({<FundHeading -= {'=WildMatch(FundHeading, *Residential Sales*)'}>} DevBudgetAmount)

Not applicable

Anthony,

Right(FundHeading, 5) is a dimension ? a valid field ?

if yes, try Sum({< $(=right(FundHeading, 5)) -= the rest of your set})

Fabrice

simondachstr
Specialist III
Specialist III

Try

Sum ({<FundHeading -= {'*Sales'}>} DevBudgetAmount)