Problem Statement:
Using Power Automate we can format date in various formats, here is how to format date to display month in text format
Steps:
In this example I am formatting the System date which is obtained from function utcnow().
formatDateTime(utcNow(),'MMMM dd, yyyy')
Output:
If you do not need to display the full Month in words, you can write "MMM" instead of "MMMM" and get the below output.
Comments
Post a Comment