Hi all,
I was trying to send a table to power automate.
The table has around 15 columns.
I have used showcolumns functions to list out the 10 columns that I needed.
But when it reach power automate, it only received 4 of them.
my code is like :
myfunction.Run(
JSON(
ShowColumns(
mydatasource,
GUID,
'Line No',
Number_text,
name,
Description,
Quantity,
Currency,
Amount,
ExchangeRate,
Unit Cost,
submissiontypevalue
)
)
)
When it reach Power Automate, the data will only show 4 columns:
[{"Number_text":"123456","name":"ABC","cr34d_guid":"44a75fb8-1ed8-47cc-9ecb-6ad2a9c00b0f","submissiontypevalue":"A"},{"Number_text":"101101","coaname":"XYZ","cr34d_guid":"1405f215-36a4-4263-b609-72eccb136bc0","submissiontypevalue":"B"}]
All other columns have actual number / string in it.