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

How to show the result of expression?

Hi,

in php you can show all details of a variable by var_dump or echo can show what happend. To better understand what happen if i try an expression, i would sometimes like to show some details.

For example:

if(GetSelectedCount()=0, "ja", "nein")

Now i want an information box where i can see the number for GetSelectedCount and if true or false.

Another example:

What is the result for Month(Today())

or

getfieldselections()

I want a possibility to show such information like in the examples. Is it possible?

regards,

Fritz

4 Replies
jonathandienst
Partner - Champion III
Partner - Champion III

Have you tried putting the expressions into text boxes? Or perhaps I don't fully understand what require.

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
Anonymous
Not applicable
Author

Yes, but than i can only show the sum, min, max etc. of values. I want to show the values. For example i want to show all getfieldselections() values.

lakshmikandh
Specialist II
Specialist II

Showing such information is not possible like you stated above, you have to separate out the expression and check it.

teiswamsler
Partner - Creator III
Partner - Creator III

Hi Walter

Use a textbox and put the expression in ' ' the output will show the calculation in the expression

ex.

='sum( {<

[Posting Date.Calendar.Year] = { "$(=Year( MonthStart( $(vCallDate) )-1 ) )" }

>} [Sales Amount] )'

Will show

sum( {<

[Posting Date.Calendar.Year] = { "2016" }

>} [Sales Amount] )


Hope it can help you!


/Teis