Hi All,
I have set Combo box valued with ["Monthly", "Weekly","Daily"]
And I wanted to get the combo box selected value to a lable based on following senario
if (cmb.selected.value = "Monthly")
{
change lable text value = 30
}
else if (cmb.selected.value = "Weekly")
{
change lable text value = 7
}
else
{
change lable text value = 1
}
Hope my question clear to you all . Thanks in advance
Solved! Go to Solution.
Hello,
If(Cmb.Selected.Value = "Monthly","30",Cmb.Selected.Value = "Weekly","7","1")
You could also use Switch()
Regards
Hello,
If(Cmb.Selected.Value = "Monthly","30",Cmb.Selected.Value = "Weekly","7","1")
You could also use Switch()
Regards
Hi @ruwna,
In the Text property of the label, consider this formula:
If(cmb.selected.value = "Monthly", "30", cmb.selected.value = "Weekly", "7", "1")