I would like to know how use if function depending on the value of a datacardValue in a EditForm.
The value in this case, is a selected value.
Thank you
Solved! Go to Solution.
You can add actions and you will need a mail connector to send mail. For example:
If(DataCardValue.Selected.Value = "red", Patch(.....); Office365.SendEmail(.....), Notify( "There is an error", NotificationType.Error ))
The ";" between the Patch and SendEmail strings the two action together if the condition is true.
You may have to explain further what you want to achieve.
A formula may go like;
If(datacardavalue1.Selected.Value ="ABC", ....,...)
------------
If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users find it.
Assuming datacardValue is a single select control dropdown or combobox it would look something like this:
If(DataCardValue.Selected.Value = "Red", "Yes", "No")
This sintax is correct, but i would like to have that if the value is ‘red’, there is an action (patch) and send email, otherwise give me a error notification.
You can add actions and you will need a mail connector to send mail. For example:
If(DataCardValue.Selected.Value = "red", Patch(.....); Office365.SendEmail(.....), Notify( "There is an error", NotificationType.Error ))
The ";" between the Patch and SendEmail strings the two action together if the condition is true.
User | Count |
---|---|
258 | |
111 | |
95 | |
48 | |
41 |