I'm using function =MONTH(A2) & =TEXT(A2,"MMM") to get the month number. However, If the date is blank it by default says 12 & Dec.
=MONTH(A2)
=TEXT(A2,"MMM")
Any suggestion for a function which will say blank " " instead of default 12 or Dec?
You could try
=if(A2="", "", MONTH(A2)) =if(A2="", "", TEXT(A2,"MMM"))
1.4m articles
1.4m replys
5 comments
57.0k users