I've got a largish spreadsheet that I imported from Access. I'm using the values in the spreadsheet to calculated averages on another worksheet. The problem is that the imported data has a large number of blank cells. I want to convert those cells to 0 when I use them to calculate the averages.
I tried using =If(isblank(A1),0,A1), thinking I could just paste that formula into every cell and it could convert the blanks and ignore the rest. However, this formula wants to covert every cell to 0, whether it is blank or not.
I tried using =If(isblank(A1),0,A1), thinking I could just paste that formula into every cell and it could convert the blanks and ignore the rest. However, this formula wants to covert every cell to 0, whether it is blank or not.