cancel
Showing results for 
Search instead for 
Did you mean: 

Formula for toggle button

Former Member
0 Kudos

Hi,

I'm using a toggle button to get input from the user. Here i need to change the label of the toggle button if the user clicks the button & restore the original label when the user clicks it again.

<b>What is the formula that i should write in the "Label" field?</b>

The name of the toggle button is "BOOL1" and the two values it should display in lable when clicked are "Tabular" and "Chart".

Plz guide me..

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

IF (BOOL1=="true",'Graphical',Tabular')

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi,

it should like this:

if(BOOL1, 'text1', 'text2')

Best Regards,

Marcel

Former Member
0 Kudos