B Bishop May 6, 2010 #1 Is there a way I can check to see if a cell value has a date value... in any format?
R Rick Rothstein May 6, 2010 #2 Use VB's IsDate function. For example... If IsDate(Range("A1").Value) Then ' A1 contains something VB can interpret as a date Else ' The contents of A1 does not look like a date to VB End If
Use VB's IsDate function. For example... If IsDate(Range("A1").Value) Then ' A1 contains something VB can interpret as a date Else ' The contents of A1 does not look like a date to VB End If
G Gary''s Student May 6, 2010 #3 Any cell with an integer value between 0 and 2958465 can, with proper formatting, represent a date.