I have a column of data – 50K rows. Most of the data is zeros. But, there are about 9000 cells that have data in them. I want to know the fastest, easiest way of deleting all the rows with zeros so that all I have left are the rows with data.
Example:
0
0
0
15
0
0
0
0
0
6
Delete all zeros and have a column that has values greater than zero.
How can I do this the easiest? I don’t know code.