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())))
