Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
初心者の質問:
「yyyy」文字列を日付に変換するにはどうすればよいですか?
私の目標は、次のことを行うことです
If "yyyy" < VBA.Date then ... End If
「yyyy」は文字列です。今日の日付を文字列として取得したい場合は、次を使用できます。
Format(Date, "yyyy")
CDate()文字列を日付に変換するために使用できます。
CDate()
CDate("1/1/2013")
年を比較するだけの場合は、次のようにすることができます。
If CInt("2012") < Format(Date, "yyyy") Then Debug.Print True End If