![]() |
Fill in the blanks!!
Hi All,
I have a range of cells (i.e. A1: D5), some of which contain values and others that are blank. I want to create a piece of code that looks in each cell of the range. If the cell is blank, then insert a 0, and if the cell contains a value then ignore it and move on to the next cell. Can anyone help at all? Thanks, Pinda. |
Fill in the blanks!!
Try this
On Error Resume Next Range("A1:D5").SpecialCells(xlCellTypeBlanks).Valu e = 0 On Error GoTo 0 -- Regards Ron de Bruin http://www.rondebruin.nl "Bhupinder Rayat" wrote in message ... Hi All, I have a range of cells (i.e. A1: D5), some of which contain values and others that are blank. I want to create a piece of code that looks in each cell of the range. If the cell is blank, then insert a 0, and if the cell contains a value then ignore it and move on to the next cell. Can anyone help at all? Thanks, Pinda. |
All times are GMT +1. The time now is 07:51 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com