Sub 日付か()
Range("B1:B20").ClearContents
For i = 1 To 20
If IsDate(Cells(i, 1).Value) Then
If Not (IsNumeric(Cells(i, 1).Value)) Then
If Cells(i, 1).Value = Cells(i, 1).Value2 Then
If Application.Phonetic(Cells(i, 1)) = "" Then
'MsgBox "日付" & vbLf & i
Cells(i, 2).Value = "書式が日付"
End If
End If
End If
End If
Next
End Sub