×
INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS

Contact US

Log In

Come Join Us!

Are you a
Computer / IT professional?
Join Tek-Tips Forums!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

Add does not work

Add does not work

Add does not work

(OP)
Hi, not sure why this is not adding. Substract, divide and multiply all work but does not add, instead it puts the numbers together

Trim(Sess0.Screen.GetString(12, 59, 10)) + Trim(Sess0.Screen.GetString(14, 39, 12))

thanks!

RE: Add does not work

HI,

Convert both string values to integer or some other numeric type. The PLUS sign will concatenate strings, while it seems that the other operators will force a string to number conversion prior to performing the math.

Skip,

glassesJust traded in my OLD subtlety...
for a NUance!tongue

RE: Add does not work

(OP)
ahhhh ok this worked fine...Thanks again Skip!

WorksheetFunction.Sum(Trim(Sess0.Screen.GetString(12, 59, 10)), Trim(Sess0.Screen.GetString(14, 39, 12)))

RE: Add does not work

Well, you posted in Attachmate, that has NOTHING to do with Excel, although you may be coding in VBA. In the Extra Basic editor you would...

CODE

CInt(Trim(Sess0.Screen.GetString(12, 59, 10))) + CInt(Trim(Sess0.Screen.GetString(14, 39, 12))) 

Skip,

glassesJust traded in my OLD subtlety...
for a NUance!tongue

RE: Add does not work

(OP)
Thanks skip, ill keep that in mind

Red Flag This Post

Please let us know here why this post is inappropriate. Reasons such as off-topic, duplicates, flames, illegal, vulgar, or students posting their homework.

Red Flag Submitted

Thank you for helping keep Tek-Tips Forums free from inappropriate posts.
The Tek-Tips staff will check this out and take appropriate action.

Reply To This Thread

Posting in the Tek-Tips forums is a member-only feature.

Click Here to join Tek-Tips and talk with other members! Already a Member? Login

Close Box

Join Tek-Tips® Today!

Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.

Here's Why Members Love Tek-Tips Forums:

Register now while it's still free!

Already a member? Close this window and log in.

Join Us             Close