how do i extract just the month of the date from a computed column?
MONTH(Date) in a math column
Just to add to Jeff’s reply, if you’re looking for the name of the month, then see below:
Sorry Can you please explain more I don’t get N mean or method 2 with some demo
N is the 'N’umber result from the math formula Month(Date)-1
. It ends up being the month number minus one. That result is used with the single value column to tell it which row in the month name table you want.
For example, it’s August, which is the 8th month. 8 - 1 = 7. This tells the Single Value column that you want the 7th row from the 1st row. Add 7 to 1 and you get 8, which is the 8th row, which contains the month name of August.