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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
qlikviewwizard
Master II
Master II

Using * in Expression

What is the ENAME = {'*'} in the below expression?

sum(

{<ENAME = {'*'},[PROMOTION_DATE] = {">=$(=yearstart(Date(HIREDATE),0,4)) <=$(=Date(HIREDATE))"},

[JOB] = ,COUNTRY = P({$<COUNTRY_CODE = {'US','UK'}>}),

>} [SALARY]

)

Thanks in advance.

1 Solution

Accepted Solutions
ramoncova06
Partner - Specialist III
Partner - Specialist III

that gives you all the values for that field, in some cases is can include nulls

View solution in original post

3 Replies
ramoncova06
Partner - Specialist III
Partner - Specialist III

that gives you all the values for that field, in some cases is can include nulls

danieloberbilli
Specialist II
Specialist II

I think it should have the same effect like {<ENAME=, ...>}  this would ensure that there is no limitation due to a selection in the field ENAME

qlikviewwizard
Master II
Master II
Author

Thank you All.