Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
adiarnon
Creator III
Creator III

expression in the script

hi,

i have a inline table that i need to use the _Measure in my model as a expression-

i added a text box with = _Measure and its giving me the text and not the resault of the expression

[_VIEW_N,_Measure

1,num(SUM(USD_AMNT_BY_PO_RATE)/1000,'#,##0')

2,num(count( ORDER_NO),'#,##0')

3,num(count(distinct ORDER_NO),'#,##0')

4,num(count(distinct BUYER_NAME),'#,##0')

5,num(count(distinct BP_CODE_CB),'#,##0') ];

what can i do?

adi

1 Solution

Accepted Solutions
Not applicable

2 Replies
Not applicable

$(=_Measure)

Mark_Little
Luminary
Luminary

HI,

You need to dollar expand as mentioned above.

If you call as you do you are asking for what is inside the variable i.e. the string for your formula.

When you dollar expand $(_measure) you are asking for the results of your formula.

Mark