Hi
I have a Power Automate visual in Power BI that exports a CSV with field (that can include nulls) in ISO 8601 format (eg: 2024-07-03T14:00:00.000Z) that I would like to convert to dd/MM/yyyy.
I've tried several variations of the expression below, but keeps returning nulls, not sure what I am doing wrong?
if(empty(item()?['_Table[Datefield]']),null,formatDateTime(item()?['_Table[Datefield]'],'dd/MM/yyyy'))
This is my flow with the expression in the compose step;

And 'Outputs' from the Compose in the Append to array variable step
