add numbers in string

  • Thread starter Thread starter billypit786
  • Start date Start date
B

billypit786

String=1000;2000;3000;4000

how can i add this nos?

i need this
total = 1000+2000+3000+4000=10000
 
There's a simpler way:

YourString ="1000;2000;3000;4000"
YourTotal = Eval(Replace(YourString, ";", "+"))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top