I am trying to get a column from one sheet and putting it in another. I am pulling the "names" column from this sheet: this is sheet2
and putting it into another sheet (sheet1) by using =sheet2!A3 and =sheet2!A4 and then dragging down to the bottom of the excel page to fill the formulas. The problem that I am having, is that for data that is not in sheet2 that it is still trying to get, I am getting zeroes like this, all the way to the bottom of the page: This is sheet 1 after I pull the column from sheet2
How do I prevent these zeroes from appearing? I would assume there is a way to "copy data in column until the bottom of the data". Basically, how do I make it so that as "sheet2" grows in size, "sheet1" will also, but without the zeroes? (The cell format is in "general" if that helps, and I am using Excel 2011 for Mac)
=IF(ISBLANK(A1)=TRUE,"",A1)
Formula is... if that if the cell is blank, show an empty cell instead of 0. Hope this helps!