Get Month using Label control in Powerapps

Loading

Requirement: Get month Name in Label Control in power apps

Add label to the screen, add the below formula in Text Property:

If(Month(Today()) >=3,
Text(Today(),"mmmm"),Text(Today(),"mmmm")
)

On Label control get the current month on Text Property:

If(Month(Today()) >=3,Text(Month(Now())))

Leave a Reply

Your email address will not be published. Required fields are marked *