If this is your first visit, be sure to check out the FAQ by clicking the link above.
You may have to register before you can post: click the register link above to proceed.
To start viewing messages, select the forum that you want to visit from the selection below.
Sub TestIt()
Range("A1").Replace "", "This Value"
End Sub
' or
Sub TestIt2()
Range("A1:A10").SpecialCells(xlCellTypeBlanks).Value = "This Value"
End Sub
Hi Dave,
yah I got it correctly.
thanks for your valuable infn.
I want to replace the blank cells with the values that are occured most times
in the given range with out using any loop.
Can you post as soon as possible if you knows..