Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I want to switch table A and table B created by script between table A and table B with a button or something on the same place. just switch the table . Is it possible ?
Hi, first you need to create a variable. This can be done in script with 'LET vVariable=0' line, or just in report level, left bottom corner -> 'Variables' and 'Create new'. Lets call it 'vVariable'.
Now in your Button you need to create new action, choose 'Set variable value' as action, your vVariable as variable and enter expression as Value: =if(vVariable=0,1,0) You basically switch with it between 1 and 0.
Now in report add 'Container' chart and drag/add both of your tables into it. Under 'Show condition' of each of your tables enter expressions =vVariable=0 and =vVariable=1 accordingly. Under Container appearance tab, turn of 'Tabs'.
Thats it, you can switch between 2 tables with a button.
Hi, first you need to create a variable. This can be done in script with 'LET vVariable=0' line, or just in report level, left bottom corner -> 'Variables' and 'Create new'. Lets call it 'vVariable'.
Now in your Button you need to create new action, choose 'Set variable value' as action, your vVariable as variable and enter expression as Value: =if(vVariable=0,1,0) You basically switch with it between 1 and 0.
Now in report add 'Container' chart and drag/add both of your tables into it. Under 'Show condition' of each of your tables enter expressions =vVariable=0 and =vVariable=1 accordingly. Under Container appearance tab, turn of 'Tabs'.
Thats it, you can switch between 2 tables with a button.
Thank you so much!
It really helpful!