IfError(
Set(
Results,
ForAll(
TableData, // extract JSON from table1
{
transactionId: Text(ThisRecord.'transactionId'),
tripStartedOn: Text(ThisRecord.'tripStartedOn'),
employeeCode: Text(ThisRecord.'employeeCode'),
startMileage: Text(ThisRecord.'startMileage'),
endMileage: Text(ThisRecord.'endMileage'),
totalMileage: Text(ThisRecord.'totalMileage')
}
)
);
Notify(FirstError.Message; NotificationType.Error); //Here, you will get error details, you can add operation to handle error process
Notify("Success!"; NotificationType.Success) //Here, you can add operation to handle succes process
//It could even get a 'finally' process here in another argument
)