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: 
sibin_jacob
Creator III
Creator III

Expression, String Issue

Hai ,

I have a expression problem. Below is my expression.

1. Only({<Physician_Name={'sibin jacob'}>}IMS_Number)

2. Only({<Physician_Name={$(vFirst_Physician)}>}IMS_Number)

I am gettong right value in the first expresion. But the second one not getting any value.

My variable value is 'sibin jacob'. I tried with 'sibin*jacob' but not getting any value.

When Physician name containing space I am not getting any value. 

How will I change the expression to get the right value using variable?

Thanks,

Sibin Jacob.C

1 Solution

Accepted Solutions
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Since it's a string you need single quotes around the variable expansion:

Only({<Physician_Name={'$(vFirst_Physician)'}>}IMS_Number)


talk is cheap, supply exceeds demand

View solution in original post

2 Replies
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Since it's a string you need single quotes around the variable expansion:

Only({<Physician_Name={'$(vFirst_Physician)'}>}IMS_Number)


talk is cheap, supply exceeds demand
sibin_jacob
Creator III
Creator III
Author

Thanks Man...