
I have a flow that i'm sending an email using the data pulled from get item information from a SharePoint list, The Date/time is showing like this:
In my email, How can i wrap the text in my powerapps automation to show it in
dd/MM/yyyy 00:00
Hey @amyharkus86
You will have to make use of formatDateTime function here.
In expressions write:
formatDateTime(outputs('Get_item')?['body/Start_x0020_Date'],'dd/MM/yyyy 00:00')
Now make a similar expression for end date also.
I hope this helps 🙂