I am so confused about this issue:
VBA syntax has this function:
If Left("abcdef",3)="abc" then
Msgbox "True"
This function is too simple, but is there a way, for example,
To have something like this
If left("abcdef",3) is in ["A".."Z"] or if left("1265avd0",2) is in [1..9]
What is the average check if left ("abcdef",3), which is equal "abc", is in this Interval ["A" .. "Z"] or the check if the left("123avd0",2)is numerical and is in the interval [1..9]
I hope you understand what I want to do
Can anyone ignite me on this?
source
share