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: 
Not applicable

set analysis expression

is this set expression is fine??

sum({$<Year = {$(vCurrentYear)},newDueIndicator={'3. Due Later'}>} [Undelivered Net value USD])

Thanks

1 Solution

Accepted Solutions
adiarnon
Creator III
Creator III

hi,

check that in your expression of the variable -vCurrentYear

you have = before the expression

View solution in original post

12 Replies
PrashantSangle

Hi,

use "

like

sum({$<Year = {"$(vCurrentYear)"},newDueIndicator={"3. Due Later"}>} [Undelivered Net value USD])

Regards

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
SunilChauhan
Champion II
Champion II

its seems ok to me.it should work

Sunil Chauhan
its_anandrjs
Champion III
Champion III

The SET expression looks ok or you can try

sum({$<Year = {" $(vCurrentYear) "},newDueIndicator={'3. Due Later'}>} [Undelivered Net value USD])


Not applicable
Author

not working,getting blank only.

SunilChauhan
Champion II
Champion II

you should try this one also


sum({$<Year = {$(=Year(Today()))},newDueIndicator={'3. Due Later'}>} [Undelivered Net value USD])

Sunil Chauhan
ashfaq_haseeb
Champion III
Champion III

Try this

sum({$<Year = {"$(=vCurrentYear)"},newDueIndicator={'3. Due Later'}>} [Undelivered Net value USD])


Regards

ASHFAQ

its_anandrjs
Champion III
Champion III

Or you can try

sum({$<Year = {' $(vCurrentYear) '},newDueIndicator={'3. Due Later'}>} [Undelivered Net value USD])


Or


sum({$<Year = {' $(=YearStart( Today()) ) '},newDueIndicator={'3. Due Later'}>} [Undelivered Net value USD])


Or


sum({$<Year = {' $(Year(vCurrentYear)) '},newDueIndicator={'3. Due Later'}>} [Undelivered Net value USD])


Or may be you Year value is not in proper format please check that.


Regards,

Anand

jagan
Partner - Champion III
Partner - Champion III

Hi,

Try this expression

sum({$<Year = {2014}, newDueIndicator={'3. Due Later'}>} [Undelivered Net value USD])


If you are getting value for this, then there is an issue with your varaible.


Regards,

Jagan.

adiarnon
Creator III
Creator III

hi,

check that in your expression of the variable -vCurrentYear

you have = before the expression