Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
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

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

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...