Hi,
This can easily be done using DAX functions in Power BI
You can use this function to perform the above operation
MonthName = ‘Table Name’ [Date] . [Month]
Or,
MonthName = FORMAT (DATE (1, [NUM] , 1) , “MMM”)
Note: DAX is not a programming language, its a formula based language