Hi @gme-eg
To extract the month name from a date type field, you can use the expression as:
If the date is shown on a edit form having the control Date_DataCard1, then use the expression:
Text(Date_DataCard1.SelectedDate,"mmmm")
If you want to retrieve directly from the datasource you can use the expression as:
Text(ThisItem.DateColumnName,"mmmm") -> If inside a gallery or edit form.
Text(LookUp(DataSourceName, Col1 = "Value1").DateColumnName,"mmmm") -> If you want to extract it from the record directly.
Hope this Helps!
If this reply has answered your question or solved your issue, please mark this question as answered. Answered questions helps users in the future who may have the same issue or question quickly find a resolution via search. If you liked my response, please consider giving it a thumbs up. THANKS!