I have the data output of an excel model. The model spits out all of the data you would want, but to accomplish this task, it also puts a "space" character in every cell that would otherwise be blank. - and I mean every cell, out to XFD1048576.
I need to take ranges of that data and transpose them into database format, which I'm confident I could do if I could clear the contents of any cell with a "space" in it so that - Range(Selection, Selection.End(xlDown)).Select - will just select data.
Is there an easy way to have VBA select the entire sheet, and clear the contents of any cell with specific content?