Hi @PBGIT ,
Do you want to know how to use drop down selected value in your trigger flow formula?
That is decided by two things:
1)what kind of parameter that your flow needs
Please check whether your flow needs a table, a record or a string.
You need to use different formula based on different kinds of parameters that flow needs.
2)the drop down's Items? the field data type that you want to use ?
You need to use different formula based on the items of the drop down to represent the data that you want.
I assume that the flow need a string, the drop down's Items is a common table, you want to get a text field value.
Then you need to use formula like this:
PowerAppsbutton.Run(DropDown2.Selected.fieldname)
I assume that the flow need a string, the drop down's Items is a table like this: [...,....], you want to get a text field value.
Then you need to use formula like this:
PowerAppsbutton.Run(DropDown2.Selected.Value)
I assume that the flow need a string, the drop down's Items is a table like this: Distinct(...), you want to get a text field value.
Then you need to use formula like this:
PowerAppsbutton.Run(DropDown2.Selected.Result)
I assume that the flow need a record, the drop down's Items is a table , you want to get selected record.
Then you need to use formula like this:
PowerAppsbutton.Run(DropDown2.Selected)
Please show me more details.
Best regards,