I need to delete blank rows. I have a sheet with column headers. If I select F5, special, blanks, then it only highlights the columns with no data, not the rows. How do I highlight the rows with blank data? Thanks, WW
I did, every answer seems to suggest using the approach I detailed using F5. One approach was to filter, but this doesn't let me delete them. Would you mind linking an answer, I have looked for about an hour. WW
I figured out my problem, my cells are not blank, they are "" which is text due to an if then formula and then pasting as values. So my question becomes how do you have make the result a blank in an if then statement. WW
Since the cell has content (a formula, no matter it displays a blank "" or anything) it's not empty so it won't be blank anyhow. Instead of using ISBLANK(A1) function change your test condition to A1="".
For purposes of just deleting data, I would suggest changing the IF formula you have now to create an error instead of "". Then, you can use the Special Cells - Formulas, errors, to select the cells in question.