ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Adding won't work??? (https://www.excelbanter.com/excel-programming/317167-adding-wont-work.html)

Michael Vaughan

Adding won't work???
 
Hello Everyone,

I loaded up a few variables from some cells in a sheet. BAdult and BChild.
They contain numbers. But, when I put in this code to crosscheck that they
don't exceed a value of 12. It is not working because instead of adding
them, it puts them together.

If BAdult + BChild 20 Then MsgBox "Max people in Business Class is
12!", vbInformation, "Compartment Error": BAdult.SetFocus: Exit Sub

The values of BAdult is 6 and BChild is 8, it is bringing up the MsgBox
because it is saying the value is 68, instead of 14?? How can I add these
two variables instead of concanting them??



Jim Thomlinson[_3_]

Adding won't work???
 
How are BAdult and BChild Declared. They should be
Dim BAdult as Integer
Dim BChild as Integer

If you have not declared them then by default they will be of type variant
which is not numeric. You could convert them to numbers using

CInt(BAdult) + CInt(BChild)

But you are better off to declare them explicitly with the Dim Statement.

"Michael Vaughan" wrote:

Hello Everyone,

I loaded up a few variables from some cells in a sheet. BAdult and BChild.
They contain numbers. But, when I put in this code to crosscheck that they
don't exceed a value of 12. It is not working because instead of adding
them, it puts them together.

If BAdult + BChild 20 Then MsgBox "Max people in Business Class is
12!", vbInformation, "Compartment Error": BAdult.SetFocus: Exit Sub

The values of BAdult is 6 and BChild is 8, it is bringing up the MsgBox
because it is saying the value is 68, instead of 14?? How can I add these
two variables instead of concanting them??




Norman Jones

Adding won't work???
 
Hi Michael,

How have you dimmed the BAdult and BChild variables?

I could concatenate if I dimmed them as strings; otherwise the expected sum
was returned.

---
Regards,
Norman



"Michael Vaughan" wrote in message
...
Hello Everyone,

I loaded up a few variables from some cells in a sheet. . They contain
numbers. But, when I put in this code to crosscheck that they don't
exceed a value of 12. It is not working because instead of adding them,
it puts them together.

If BAdult + BChild 20 Then MsgBox "Max people in Business Class is
12!", vbInformation, "Compartment Error": BAdult.SetFocus: Exit Sub

The values of BAdult is 6 and BChild is 8, it is bringing up the MsgBox
because it is saying the value is 68, instead of 14?? How can I add these
two variables instead of concanting them??





Bob Phillips[_6_]

Adding won't work???
 
Michael,

Did you use the Text property of the Range? If so, try the Value property
instead.

--

HTH

RP
(remove nothere from the email address if mailing direct)


"Michael Vaughan" wrote in message
...
Hello Everyone,

I loaded up a few variables from some cells in a sheet. BAdult and

BChild.
They contain numbers. But, when I put in this code to crosscheck that

they
don't exceed a value of 12. It is not working because instead of adding
them, it puts them together.

If BAdult + BChild 20 Then MsgBox "Max people in Business Class is
12!", vbInformation, "Compartment Error": BAdult.SetFocus: Exit Sub

The values of BAdult is 6 and BChild is 8, it is bringing up the MsgBox
because it is saying the value is 68, instead of 14?? How can I add these
two variables instead of concanting them??






All times are GMT +1. The time now is 06:12 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com