Weeble
Board Regular
- Joined
- Nov 30, 2016
- Messages
- 95
- Office Version
- 365
Code:
If (P10Text.Value = "*" Or P20Text.Value = "*" Or P30Text.Value = "*" Or P31Text.Value = "*" Or PLText.Value = "*") Then
Worksheets("PlockSnitt").Activate
Could anyone give me a suggestion on how to write this statement in a better way?
Does not work that great for me. Basicly I need if the value in the textboxes are greater than 0 It must execute a series of lines.
I've tried replacing with P10Text.Value > 0 , but can't get the code to run properly.
Probably having so many Or's is not ideal i'm guessing?