A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
I am trying to return either a Month value for a cell, eg the month number, or a blank cell to allow me to carry out the next calculation without there being a #Value in the cell which is then compremising the next step.
Many thanks and I look forward to hearing from you in the near future.
Chris
As a general way of avoiding errors you can use the IFERROR() function.
Something like this maybe:
=IFERROR(MONTH(A1),"")
This will return an empty string if the result of the MONTH() function should be an error value like #VALUE!
Hope this helps / Lars-Åke