Hi Friends,
i have task to replace some particular Text in a range of cells, i have a existing code, which replaces text properly,
but now my ask is just to replace the Text only at the lastpart of the Text,
it should not replace the text in the start Text / Middle Text, it should get replaced only at the End.
Code
ActiveSheet.Range("A:A").Replace " LAKE", " LK"
ActiveSheet.Range("A:A").Replace " ROAD", " RD"
ActiveSheet.Range("A:A").Replace " STREET", " ST"
ActiveSheet.Range("A:A").Replace " DRIVE", " DR"
for example:
existing code converts like :
Lakeshore Road to LKshore RD
code required:
Lakeshore Road to Lakeshore RD