P parbatidebnath New Member Jul 3, 2012 #1 HOW TO SEARCH ALL BLANK ROW AND CONVERT THEM (-) WITH MULTIPLE DATA IN EXCEL*
Hui Excel Ninja Staff member Jul 3, 2012 #3 You can try this VBA code [pre] Code: Sub Replace_Blanks() Dim c As Range For Each c In Selection If c.Value = "" Then c.Value = "-" Next End Sub [/pre] Then select the range you want to check Run the code
You can try this VBA code [pre] Code: Sub Replace_Blanks() Dim c As Range For Each c In Selection If c.Value = "" Then c.Value = "-" Next End Sub [/pre] Then select the range you want to check Run the code
Debraj Excel Ninja Jul 3, 2012 #4 Hi Parbati, select the range you want to check press Alt + E + G + S + K, **(goto Special - Blanks) / Home >Editing > Find & Select > GotoSpecial > Blanks) Now just write "-" and press Ctlr + Enter.. Its Done..
Hi Parbati, select the range you want to check press Alt + E + G + S + K, **(goto Special - Blanks) / Home >Editing > Find & Select > GotoSpecial > Blanks) Now just write "-" and press Ctlr + Enter.. Its Done..
N nazmul_muneer Member Jul 3, 2012 #5 Select range Press Ctrl+H Make Blank or clean "Find What" text box Type - in "Replace with" Click on Replace All
Select range Press Ctrl+H Make Blank or clean "Find What" text box Type - in "Replace with" Click on Replace All