Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
kaldubai
Creator
Creator

If statment to Set analysis

Hi Qlikers,

I have the below if statement and it work fine on table but I need it to be working as KPI (Set Analysis).

if(
(sum({<MMT_DATE={">=$(=date(num((Max(As_At_Date)))))<=$(=date(num((Max(As_At_Date_2)))))"}>}distinct LN_QTY)
>
Sum({<MMT_DATE={">=$(=date(num((Max(As_At_Date)))))<=$(=date(num((Max(As_At_Date_2)))))"}>} MMT_QUANTITY)),

Count(distinct TRANSACTION_SOURCE_ID_1)
)
 
does any have idea how we can convert it into a set analysis or even another solution to it .
 
 
Thanks In Advance.
Labels (1)
1 Solution

Accepted Solutions
sunny_talwar

May bad, try this (misplaced ] and "... fixed it now)

Count(DISTINCT 

{<TRANSACTION_SOURCE_ID_1 = {"=Sum({<MMT_DATE = {[>=$(=Date(Max(As_At_Date)))<=$(=Date(Max(As_At_Date_2)))]}>} DISTINCT LN_QTY) > Sum({<MMT_DATE={[>=$(=Date(Max(As_At_Date)))<=$(=Date(Max(As_At_Date_2)))]}>} MMT_QUANTITY)"}>}

TRANSACTION_SOURCE_ID_1)

 

View solution in original post

9 Replies
sunny_talwar

May be this

Count(DISTINCT 

{<TRANSACTION_SOURCE_ID_1 = {"=Sum({<MMT_DATE = {[>=$(=Date(Max(As_At_Date)))<=$(=Date(Max(As_At_Date_2)))]}>} DISTINCT LN_QTY) > Sum({<MMT_DATE={[>=$(=Date(Max(As_At_Date)))<=$(=Date(Max(As_At_Date_2)))"}>} MMT_QUANTITY)]"}>}

TRANSACTION_SOURCE_ID_1)

 

kaldubai
Creator
Creator
Author

@sunny_talwar  thanks for your repley Sunny.

but it still gives me an error  cause of the brackets [] not sure if it should be a part of the set analysis or no !!

sunny_talwar

May bad, try this (misplaced ] and "... fixed it now)

Count(DISTINCT 

{<TRANSACTION_SOURCE_ID_1 = {"=Sum({<MMT_DATE = {[>=$(=Date(Max(As_At_Date)))<=$(=Date(Max(As_At_Date_2)))]}>} DISTINCT LN_QTY) > Sum({<MMT_DATE={[>=$(=Date(Max(As_At_Date)))<=$(=Date(Max(As_At_Date_2)))]}>} MMT_QUANTITY)"}>}

TRANSACTION_SOURCE_ID_1)

 

gmenoutis
Partner - Creator II
Partner - Creator II

still brackets instead of double quotes....

Count(DISTINCT

{<TRANSACTION_SOURCE_ID_1 = {"=Sum({<MMT_DATE = {">=$(=Date(Max(As_At_Date)))<=$(=Date(Max(As_At_Date_2)))"}>} DISTINCT LN_QTY) > Sum({<MMT_DATE={">=$(=Date(Max(As_At_Date)))<=$(=Date(Max(As_At_Date_2)))"}>} MMT_QUANTITY)"}>}

TRANSACTION_SOURCE_ID_1)

 

sunny_talwar

Yes because double quotes within double quotes won't work unless you use an escape sequence

Count(DISTINCT

{<TRANSACTION_SOURCE_ID_1 = {"=Sum({<MMT_DATE = {"">=$(=Date(Max(As_At_Date)))<=$(=Date(Max(As_At_Date_2)))""}>} DISTINCT LN_QTY) > Sum({<MMT_DATE={"">=$(=Date(Max(As_At_Date)))<=$(=Date(Max(As_At_Date_2)))""}>} MMT_QUANTITY)"}>}

TRANSACTION_SOURCE_ID_1)

or use square brackets like mentioned before

Count(DISTINCT

{<TRANSACTION_SOURCE_ID_1 = {"=Sum({<MMT_DATE = {[>=$(=Date(Max(As_At_Date)))<=$(=Date(Max(As_At_Date_2)))]}>} DISTINCT LN_QTY) > Sum({<MMT_DATE={[>=$(=Date(Max(As_At_Date)))<=$(=Date(Max(As_At_Date_2)))"}>} MMT_QUANTITY)]}>}

TRANSACTION_SOURCE_ID_1)

 

gmenoutis
Partner - Creator II
Partner - Creator II

Really? You can escape double quotes using brackets?

Can you also escape single quotes this way (for strings inside dynamic expressions)?

kaldubai
Creator
Creator
Author

@sunny_talwar

 many thanks Sunny for sharing your knowledge....

Rock Star like always 🙂 

 

 

 

sunny_talwar

I am not really sure if [] is equivalent of single quotes or double quotes, but we know that single quotes and double quotes are interchangeable in some cases.... in those cases, I would assume that single quote or double quote can be replaced with square brackets.

sunny_talwar

No problem at all, I am always happy to help.