Hi,
Working on creating power app and power automate, where i would like to capture information from a form with dropdown option (must select 1) then send this information to email.
I am using clear collect function and JSON function to send this to power automate, however on the dropdown value, when it is translated to power automate, it keeps showing 100000000 for the result.
Any advice what i should check to fix this problem?
Result:
[{"AccountName":"testno4","CargoType":100000000,"ContSize":100000000,"EmailCustomer":"test@test.com","Sector":100000000,"Type":100000000,"ValidFrom":"2021-06-27","ValidTo":"2021-06-30"}]
Value of the error is supposed to be:
Cargo Type : DRY
Sector : NSA-JEA
Type : Empty
ContSize : 20
Screenshot in power automate on Parse JSON:

Coding from the button "Send e-Mail" in Power App
ClearCollect(
QuoteColl,
{
EmailCustomer: InputEmailCustomer.Text,
AccountName: InputAccountName.Text,
Sector: DataCardSector.Selected.Value,
CargoType: DataCardCargoType.Selected.Value,
ContSize: DataCardContainerSize.Selected.Value,
Type: DataCardType.Selected.Value,
ValidFrom: DateValueValidForm.SelectedDate,
ValidTo: DateValueValidTo.SelectedDate
}
);
Set(
QuoteToCust,
JSON(QuoteColl)
);
Clear(QuoteColl);
SendQuotation.Run(QuoteToCust);
Navigate(ConfirmEmailSentScreen)