Get today’s date and format date to ‘dd-MM-yyyy’ format using Power Automate Microsoft Flow (MS Flow). Initialize a new string variable with the name todaysDate.
Use the below expression as the value of the todaysDate string variable to get the date in DateTime format.
utcNow()
Add a new Compose step to format todaysDate variable to ‘dd-MM-yyyy’ format in Power Automate Microsoft Flow. Use the below expression to format the date.
formatDateTime(variables('todaysDate'), 'dd-MM-yyyy')
Run the flow and see the output.
