VBAの条件付きコンパイルで文字列定数を使用することは可能ですか?
例えば:
#Const This_File_Concept="Chancleta"
'
#If This_File_Concept="Chancleta" then
''...Something happens
#End If
'
#If This_File_Concept="Auto" then
''...Something different happens
#End If
'
#If This_File_Concept="Freesbee" then
''...Another thing happens
#End If
ありがとう !