Also need the conditionals

[vba]
Function WhichBit()
#If Win64 Then
WhichBit = True
#Else
WhichBit = False
#End If
End Function
Function WhichVBA()
#If VBA7 Then
WhichVBA = True
#Else
WhichVBA = False
#End If
End Function
[/vba]