Can anyone tell me how to remove a random characher from a string? Please help. [email protected]
Printable View
Can anyone tell me how to remove a random characher from a string? Please help. [email protected]
You can use Mid() function.
For example you want to remove 1st "T" from "BUTTON":
Result = Mid ("BUTTON", 1, 2) & Mid ("BUTTON", 4, Len("BUTTON"))
In case you need help - [email protected] though I'm not much of a pro myself.