Hi,
trying to get a calculated value based on input from a drop down list but cannot get the syntax right.

Hi,
trying to get a calculated value based on input from a drop down list but cannot get the syntax right.
Hi @Lafsen ,
Assuming your options are Dataverse choice fields.
For a Local choice, try:
If(
Country.Selected.Value = 'Your Country Choice Field (Your Table Plural Name)'.Vietnam,
30,
0
)
For a Global choice, try:
If(
Country.Selected.Value = 'Your Global Choice Field'.Vietnam,
30,
0
)
------------------------------------------------------------------------------------------------------------------------------
If I have answered your question, please mark your post as Solved. Remember, you can accept more than one post as a solution.
If you like my response, please give it a Thumbs Up.
Imran-Ami Khan