How can I use the MONTH function if the cell is blank? It is returning #INVALID DATA TYPE.
I'm pulling this information into 3 columns from the Actual Submission Date Column:
"Month" - new column with the following formula: =MONTH(([Actual Submission Date]@row))
"Year" - new column with the following formula: =YEAR([Actual Submission Date]@row)
"Submitted MM/YYYY" - new column with the following formula: =Month@row + "/" + Year@row
These are date columns and I want to pull the Month and Year only into one cell for a monthly report.
Is there a better way of doing this?