473,406 Members | 2,371 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,406 software developers and data experts.

if then errors in vba. please help

Hi.

Please help. Still learning...

I am trying to write some code that will assign certain values to a variable based on values from a textbox.
So far I have the following but It doesn't seen to be working.

It should be that if my textbox is
0-3 then the expand value should be 0
4-6 then the expand value should be 1
6 and over then the expand value should be 2

This is the code I have

Dim lines As Double
Dim expand As Double

'reset expand value
expand = 0

'check line values and adjust expand values to suit
lines = txtLines.Text
If lines =>4 and <=6 Then
expand = 1
Else: If lines > 6 Then expand = 2
End If
Jul 28 '07 #1
7 1377
hariharanmca
1,977 1GB
Hi.

Please help. Still learning...

I am trying to write some code that will assign certain values to a variable based on values from a textbox.
So far I have the following but It doesn't seen to be working.

It should be that if my textbox is
0-3 then the expand value should be 0
4-6 then the expand value should be 1
6 and over then the expand value should be 2

This is the code I have

Dim lines As Double
Dim expand As Double

'reset expand value
expand = 0

'check line values and adjust expand values to suit
lines = txtLines.Text
If lines =>4 and <=6 Then
expand = 1
Else: If lines > 6 Then expand = 2
End If
[PHP]
If lines < 4 Then
expand = 1
ElseIf lines >= 4 And lines <= 6 Then
expand = 1
ElseIf lines > 6 Then
expand = 2
End If[/PHP]

just try this.

hange

Expand|Select|Wrap|Line Numbers
  1. ElseIf lines >= 4 And <= 6 Then
to

Expand|Select|Wrap|Line Numbers
  1. ElseIf lines >= 4 And lines  <= 6 Then
Jul 28 '07 #2
thank you.

worked sweet.
Jul 28 '07 #3
Killer42
8,435 Expert 8TB
Expand|Select|Wrap|Line Numbers
  1. ElseIf lines >= 4 And <= 6 Then
  2. ElseIf lines >= 4 And lines  <= 6 Then
Of course, you could just change it to
Expand|Select|Wrap|Line Numbers
  1. ElseIf lines <= 6 Then
for the same effect.
Jul 30 '07 #4
hariharanmca
1,977 1GB
Of course, you could just change it to
Expand|Select|Wrap|Line Numbers
  1. ElseIf lines <= 6 Then
for the same effect.
i cannot get what you mean

ElseIf lines >= 4 And <= 6 Then
ElseIf lines >= 4 And lines <= 6 Then

in the above code they miss 'lines' so i did it
Jul 30 '07 #5
Killer42
8,435 Expert 8TB
i cannot get what you mean ...
I'm aware of that. My point is that we already know the value is >= 4, so it's not actually necessary to check it again. So ElseIf lines <= 6 would work just as well.
Jul 30 '07 #6
hariharanmca
1,977 1GB
I'm aware of that. My point is that we already know the value is >= 4, so it's not actually necessary to check it again. So ElseIf lines <= 6 would work just as well.
You mean

Expand|Select|Wrap|Line Numbers
  1. If lines < 4 Then
  2.     expand = 1
  3. ElseIf lines <= 6 Then
  4.     expand = 1
  5. Else
  6.     expand = 2
  7. End If
Yha you are correct.
Jul 30 '07 #7
Killer42
8,435 Expert 8TB
Yeah, it was no big deal. Just pointing out a slightly shorter alternative coding.
Jul 30 '07 #8

Sign in to post your reply or Sign up for a free account.

Similar topics

10
by: Douglas Buchanan | last post by:
I am using the following code instead of a very lengthly select case statement. (I have a lot of lookup tables in a settings form that are selected from a ListBox. The data adapters are given a...
12
by: Russ | last post by:
Hello. My new dev machine is running XP Pro. In the past all equipment has only used Windows 2000. I have had a lot of problems getting my projects up and running on the new machine. The current...
0
by: Tiraman | last post by:
Hi , i m getting the following errors under the eventlog while i m trying to run some class that i wrote. at the first i got an error about the just-in-time : access denied and i added the...
13
by: Douglas Buchanan | last post by:
I am using the following code instead of a very lengthly select case statement. (I have a lot of lookup tables in a settings form that are selected from a ListBox. The data adapters are given a...
12
by: Russ | last post by:
Hello. My new dev machine is running XP Pro. In the past all equipment has only used Windows 2000. I have had a lot of problems getting my projects up and running on the new machine. The current...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.