Hi,
I was developing a power app to convert the data in CSV file to sharepoint list. I was following the below youtube video
https://www.youtube.com/watch?v=P6yqIpjmPrs
Unfortunately I am facing an error in the final stage " The type of arguments does not match with the expected type 'Record', Found type 'Record'.
Below is the code I wrote, any help is appreciated.
If(
CountRows(ColDataImport)>0,
Set(
varNumber,varNumber+1);
ForAll(
ColDataImport,
Collect(
ColGridData,
Patch(
varNewRecord,
{
ID:varNumber,
HAWBCHECK :{
Value:(Last(
FirstN(
ThisRecord.Value.Result,
2
).Result
).Result)
},
InvoiceNo:{
Value: Last(
FirstN(
ThisRecord.Value.Result,
3
).Result
).Result
}

Report
All responses (
Answers (