B billypit786 Mar 28, 2008 #1 String=1000;2000;3000;4000 how can i add this nos? i need this total = 1000+2000+3000+4000=10000
D Douglas J. Steele Mar 28, 2008 #2 There's a simpler way: YourString ="1000;2000;3000;4000" YourTotal = Eval(Replace(YourString, ";", "+"))
There's a simpler way: YourString ="1000;2000;3000;4000" YourTotal = Eval(Replace(YourString, ";", "+"))