I use this fomulate to calucate via drop down list and text input
If(
IsBlank(ComboBox1.Selected.Option),
Blank(),
Value(ComboBox1.Selected.Value) * Value(TextInput1.Text)
)
but it doesn't work. It show error that the value argument.
My information in ComboBox1 base on Choices in Share point
Hi @mae_be9292,
Try with it please :
If(
IsBlank(ComboBox1.SelectedText.Value),
Blank(),
Value(ComboBox1.SelectedText.Value) * Value(TextInput1.Text)
)
Does it work for you ? 🙂
Best regards,
Louis
If( IsBlank(ComboBox1.Selected), Blank(), Value(ComboBox1.Selected.Option) * Value(TextInput1.Text) )
Hi @mae_be9292 ,
Try this formula:
If( IsBlank(ComboBox1.Selected.Option), Blank(), Value(ComboBox1.Selected.Option) * Value(TextInput1.Text) )
Best regards,
Community Support Team _ Phoebe Liu
It try all solution and then it error appear
"Name isn't Valid. This identifier isn't recognized."
Hi @mae_be9292 ,
Could you show me more details about your problem, such as screenshoots, formulas, etc?
Best regards,
Community Support Team _ Phoebe Liu