- ベストアンサー
VBA 関数(Function) カッコの後のデータ型は必要?
Function あ() あ = "あああ" End Function Sub test3() MsgBox あ End Sub と、 Function あ() As String あ = "あああ" End Function Sub test3() MsgBox あ End Sub は同じ動作をするのですがやはり「As String」をつけたほうがいいのですか? ウォッチウインドウで確認すると 「As String」がないほうは「Variant/ String」型ですが あるほうは「String」型のみです。
- みんなの回答 (5)
- 専門家の回答
お礼
ありがとうございます。