I have data in spreadsheets that I want to import into a database (Access), but I need to transform much of the data before it’s ready. (I have to clean-up all kinds of data entered by end-users.)
So, I use one worksheet tab to reference the raw data (in another worksheet). If the raw data cell is blank, my formula says to set the cell to “” — =IF(ISBLANK(B2),””,N(B2)). Then, when all the data is transformed, I copy everything and Paste Special Value. The trouble is that a value of “” is not a blank cell! It contains something. And that something screws-up the import into the database (what should be number columns are interpreted as text because of the cells that are filled with “”).
QUESTION: Is there a way to actually set a cell to the equivalent of being Deleted? (If I select every ‘bank’ cell and hit the Delete key, it removes the trouble and enables a success import to the DB.)