Manuel Cavero
New Member
- Joined
- Feb 17, 2018
- Messages
- 26
Good morning or afteernooon to everyone:
I've this little piece of VBA code that it's not working:
Where PAc_ALA is an integer. Anyway, I tried in a different way:
But it's not working anyway. What it's happenning?
I've this little piece of VBA code that it's not working:
Code:
Select Case PAc_ALA[INDENT]Case Is <> 5, Is <> 10, Is <> 15, Is <> 20, Is <> 25, Is <> 30, Is <> 35, Is <> 40[/INDENT]
[INDENT] Do whatever[/INDENT]
End Select
Where PAc_ALA is an integer. Anyway, I tried in a different way:
Code:
Select Case True[INDENT]Case PAc_ALA <> 5, PAc_ALA <> 10, PAc_ALA <> 15, PAc_ALA <> 20, PAc_ALA <> 25, PAc_ALA <> 30, PAc_ALA <> 35, PAc_ALA <> 40[/INDENT]
[INDENT] Do whatever[/INDENT]
End Select
But it's not working anyway. What it's happenning?