I cant figure out the syntax for this;
If totalSalary >= 200.0 & <= 299.0
What is the correct syntax for this type of statement? I was thinking you could use the ampersand for this but I guess not.
Thanks.
Printable View
I cant figure out the syntax for this;
If totalSalary >= 200.0 & <= 299.0
What is the correct syntax for this type of statement? I was thinking you could use the ampersand for this but I guess not.
Thanks.
If totalSalary >= 200.0 And totalSalary <= 299.0
VB Code:
If totalSalary >= 200D AndAlso totalSalary <= 299D
Thanks guys.