Replace /- from all cell in excel
To delete the "/-" from all cells in Excel that contain values like "২,০০০/-", you can use Excel's Find and Replace feature. Here's how to do it:
Type-1:
- Open the Excel sheet where the data is located.
- Select the range of cells where you want to make the change. If it's the entire sheet, press
Ctrl + Ato select all cells. - Press
Ctrl + Hto open the Find and Replace dialog box. - In the Find what field, type
/-. - Leave the Replace with field empty.
- Click Replace All.
Type-2
=SUBSTITUTE(D2,"/-","")
Type-3 (also convert text to number)
=VALUE(LEFT(D2,FIND("/",D2)-1))
Comments
Post a Comment