|
-
Mar 11th, 2011, 05:45 AM
#1
Thread Starter
Fanatic Member
[RESOLVED] Replacing Select Digits in 5-Digit Number
If I was to replace certain digits within a 5-digit number, how would I do it?
-
Mar 11th, 2011, 06:06 AM
#2
Re: Replacing Select Digits in 5-Digit Number
 Originally Posted by JonSea31
If I was to replace certain digits within a 5-digit number, how would I do it?
You need to be more specific but:
Dim VBForums As String
VBForums = "12342"
VBForums = Replace(VBForums, "2", "5")
MsgBox VBForums
-
Mar 12th, 2011, 02:08 PM
#3
Thread Starter
Fanatic Member
Re: Replacing Select Digits in 5-Digit Number
It looks like "Price" is right, as the code works perfectly. All I wanted was a rough idea, and I worked from there. Thanks!
Thread is now resolved.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|