Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

compare Each List Value

Hi, ALL

Someone know that?

I want show like this

[Month]      [(MonthSales)]     [(LastMonthSales)]     [Compare(%)]

Now, I struggleed with LastMonthSales.

I thought ==>

=if((Month-1 >0),  Sum ({1<Month={"Month-1"}>}Sale), 'no')

but, not working.

how to resolve this..

thank you.

ED

1 Solution

Accepted Solutions
trey_bayne
Partner - Creator
Partner - Creator

Try using Above(Sales1) in the expression

View solution in original post

3 Replies
trey_bayne
Partner - Creator
Partner - Creator

Try using Above(Sales1) in the expression

trey_bayne
Partner - Creator
Partner - Creator

Also, if you want to get rid of the null you can do something like this in Sales2.

=if(isnull(Above(Sales1)),Sales1,Above(Sales1))

Not applicable
Author

Trey, Thank you

great thank you!!!

I solved it!