VBA - evaluate if a cell is formatted as a date (of *any* date type)

wintersm

New Member
Joined
Feb 26, 2014
Messages
2
I have a Task List workbook that launches a calendar app (Userform Control called MonthView) whenever a "date cell" is double-clicked. "Date Cells" are identified by their NumberFormat (mm/dd/yyyy). So the function tests the cell NumberFormat, and if it is "mm/dd/yyyy" then it loads the calendar so the user can select a new date. I would like to expand the evaluation to identify ANY date formats, not just my pre-set "mm/dd/yyyy". The cell might be blank to start, so I cannot test if the cell value is a date, and I'd rather not use the header as an indicator (ex. "If header contains 'date' then load calendar").

Is there a way to test that the target cell is formatted as a date without specifying the exact date type?

Thanks in advance for any ideas.

-Mike
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
Use this in BeforeDoubleClick event code:
Rich (BB code):
  If IsDate(Target(1).Value) Then
    MonthView.Show
    Cancel = True
  End If
Regards
 
Last edited:
Upvote 0
Use this in BeforeDoubleClick event code:
Rich (BB code):
  If IsDate(Target(1).Value) Then
    MonthView.Show
    Cancel = True
  End If
Regards

Thanks for taking the time to respond to my question. I'll give it a shot and report back. The cell value may be blank in some cases. It will be interesting to see if this works in that case.

-Mike.
 
Last edited:
Upvote 0
... The cell value may be blank in some cases. It will be interesting to see if this works in that case.

-Mike.
Hi Mike,

To show form on empty cell too, the code might be as follows:
Rich (BB code):
  If IsDate(Target(1).Value) Or IsEmpty(Target(1).Value) Then
    MonthView.Show
    Cancel = True
  End If
Target(1) is the same as Target.Cells(1) and used for the case of double clicking on joined cells.

Regards,
Vlad
 
Upvote 0
To show form on empty cell too, the code might be as follows:
Code:
If IsDate(Target(1).Value) Or IsEmpty(Target(1).Value) Then
I don't like the IsDate function as it will return True for odd values (for example, try 1.2 in a cell formatted as Text or 5/6-78 in a cell formatted as General or Text). Now, this probably won't be a problem for the OP as he seems to have defined his situation, but we cannot be sure.

Going back to the question as asked...

"Is there a way to test that the target cell is formatted
as a date
without specifying the exact date type?"

here is a way...
Code:
If Evaluate("CELL(""format""," & Target(1).Address & ")") Like "D[1-5]" Then
 
Last edited:
  • Like
Reactions: ZVI
Upvote 0
Hi Rick,
Good point - thank you!
This can be used for data value and empty value:
Rich (BB code):
  Dim vt As VbVarType
  vt = VarType(Target(1).Value)
  If vt = vbDate Or vt = vbEmpty Then
    MonthView.Show
    Cancel = True
  End If
Regards,
Vlad
 
Last edited:
Upvote 0
...Going back to the question as asked...

"Is there a way to test that the target cell is formatted
as a date
without specifying the exact date type?"

here is a way...
Code:
If Evaluate("CELL(""format""," & Target(1).Address & ")") Like "D[1-5]" Then
On my testing it does not work correctly with some date formats of cells.
Seems this works more correctly:
Rich (BB code):
  If VarType(Target(1).Value) = vbDate Or Val(Format(0, Target(1).NumberFormat)) <> 0 Then
    MonthView.Show
    Cancel = True
  End If
Looks like it is also not strict, but may be acceptable enough for major cases
 
Last edited:
Upvote 0
And usually if cell has formula then calendar do not appear, or at least should not change that cell's value to prevent formula disappearing.
If Target(1).HasFormula Then Exit Sub
 
Upvote 0

Forum statistics

Threads
1,214,918
Messages
6,122,249
Members
449,075
Latest member
staticfluids

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top