I have some blank cells in a worksheet where I would like to enter zeros. A simple find replace doesn't work since excel doesn't see them as blank. I have discovered that there are spaces in the cells so I am thinking a TRIM fuction would work but I don't know how to apply it to a specific range.
Range(Cells(2, 6), Cells(lastrow, 6)).Select
How would I find cells in a specific range that appear to be blank and then replace each with 0?
Thanks!
Range(Cells(2, 6), Cells(lastrow, 6)).Select
How would I find cells in a specific range that appear to be blank and then replace each with 0?
Thanks!