gtd526
Well-known Member
- Joined
- Jul 30, 2013
- Messages
- 684
- Office Version
- 2019
- Platform
- Windows
Hello,
Need to remove repeating characters from the Right and thats it, just the repeating ending characters only.
The number of ")" will differ. Could be 1 or 100. It will change daily. It will always be ")" at the end and will follow "", always. So anything after ""?
Here is the text for removal.
Im using the following code, but it removes all ")".
thank you
Need to remove repeating characters from the Right and thats it, just the repeating ending characters only.
The number of ")" will differ. Could be 1 or 100. It will change daily. It will always be ")" at the end and will follow "", always. So anything after ""?
Here is the text for removal.
NBA.xlsm | |||
---|---|---|---|
A | |||
10 | ,IF(AND($A4=$AQ4,$B4<0,$B4=100),"????","")))))))) | ||
Indicators |
Im using the following code, but it removes all ")".
VBA Code:
Range("A" & i).Replace What:=")", Replacement:="", LookAt:=xlPart
thank you