I am using a button on a PowerApps sharepoint input form to create an new item in a different sharepoint list when certain conditions are met (using power automate). Flow has no problem as long as i am trying to copy text fields but i get an error when I try to copy to a currency or number field. I'm thinking its just a nomenclature issue ie
when i want to copy text the code is simply
NameofAutomate.Run(DataCardValue2.text
when i want to copy a selected date the code is
NameofAutomate.Run(DataCardValue2.SelectedDate
when i want to copy a value form a dropdown the code is
NameofAutomate.Run(DataCardValue2.Selected.value
Can anyone advise the nomenclature for numbers or currency?
IF i use DataCardValue2.text it is accepted by powerapps but i get a powerautomate error when i try to run it via the button
The solution turned out to be to use 'Value(DataCArdValue.Text) in the PowerAppsButton.Run expression