Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
zagzebski
Creator
Creator

Set Analysis comparing field to "right" 2 of other field

I must have something wrong in my expression because the chart just gives me the sum of revenue for all records - it is not evaluating the set.

Sum({<[Renewal Month]={"=Right([Incurred Year Month],2)"}>} [Revenue])

Thanks in advance.

1 Solution

Accepted Solutions
Jason_Michaelides
Luminary Alumni
Luminary Alumni

Try:

Sum({<[Renewal Month]={"$(=Right([Incurred Year Month],2))"}>} [Revenue])

View solution in original post

9 Replies
Not applicable

Would it be possible for you to share a sample qvw?

Jason_Michaelides
Luminary Alumni
Luminary Alumni

Try:

Sum({<[Renewal Month]={"$(=Right([Incurred Year Month],2))"}>} [Revenue])

Nicole-Smith

Sum({<[Renewal Month]={'=[Renewal Month]=Right([Incurred Year Month],2)'}>} [Revenue])

zagzebski
Creator
Creator
Author


Thanks!. I am always confused as to when to use the $ sign expansion. Not sure why in this case...

antoniotiman
Master III
Master III

Set Analysis is not per Row.

Use if

Sum(If([Rev Month]=Right([Inc YM],2),Revenue)

Regards

zagzebski
Creator
Creator
Author


Thanks Nicole -

The help I received from Jason (above) had this on the right side of the expression:

{"$(=Right([Incurred Year Month],2))"}

Yours had this:

{'=[Renewal Month]=Right([Incurred Year Month],2)'}

Both worked fine bhut I am not sure I totally understand why!

zagzebski
Creator
Creator
Author

Jason - I have a slight modification to what I need.

I need the formula to be LESS than or = . I added it below but then I get no results. Is it not as simple as what I did below?

Sum({<[Renewal Month]={"$(<=Right([Incurred Year Month],2))"}>} [Revenue])

jerem1234
Specialist II
Specialist II

Sum({<[Renewal Month]={"<=$(=Right([Incurred Year Month],2))"}>} [Revenue])


Should do it.


Hope this helps!

Thsmi_
Partner - Contributor II
Partner - Contributor II

Hi, I'm new to qlik sense. may i know, what does it mean by Right([Incurred Year Month],2) in Sum({<[Renewal Month]={'=[Renewal Month]=Right([Incurred Year Month],2)'}>} [Revenue])?