Re: PVA to pass variables to excel sheet on SharePoint?
Hi @VeeLearnMSFT,
Can you try these three expression below to split and extract the values into three output variables in the last action of your flow?
First value:
replace(replace(split(body('Run_script'), ',')[0], '[', ''), ']','')
Second value:
formatnumber(float(replace(replace(split(body('Run_script'), ',')[1], '[', ''), ']','')), 'C2', 'en-us')
Third value:
formatnumber(float(replace(replace(split(body('Run_script'), ',')[2], '[', ''), ']','')), 'C2', 'en-us')