A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hi Hassan,
Select the range of cell and then run this macro:
| Sub ReplaceSelection() <br><br> <br><br> Selection.Replace _ <br><br> What:="HELLO", Replacement:="HI", _ <br><br> SearchOrder:=xlByColumns, MatchCase:=True <br><br> <br><br>End Sub |
|---|
It's applied to all selected cell.
Hope that helps.