Want entire column show data from another column

Chelrie

New Member
Joined
Jul 14, 2009
Messages
27
I have two worksheets.

'IN PROGRESS' - I utilize to enter data

'REPORT - IN PROGRESS' - I utilize to create a report for a client. I want column A from this worksheet to report all of the data from the same column in 'IN PROGRESS'. This list changes in length depending on how many projects we have going at one time.

Obviously - I can just say A2=A2 from the other, and drag it down. But then empty cells say zero - and I have to set my print area. Also - once we reach the number of rows I've extended the formula to, we have to go back and alter the spreadsheet.

How can I set a formula for the worksheet to lookup an entire column?
 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
Why do you need to duplicate your data? In case there is a valid reason, put this formula in A2:

=IF(ISBLANK(Sheet1!A2),"",Sheet1!A2)

and copy it from A3 to the bottom of the worksheet. Then (assuming you have a header in A1) define Print_Area as:

=OFFSET(Sheet2!$A$1,0,0,COUNTA(Sheet2!$A:$A)-COUNTBLANK(Sheet2!$A:$A))
 
Upvote 0
Andrew - "IN PROGRESS' has a lot of fields that the client doesn't want to print. We're trying to avoid having to hide a bunch of columns every time we need to print a report. The theory was that if we just duplicated the data we need in the other sheet - we could avoid that. Is there a better way to do this? Willing to go read help on a technique for reporting if you have suggestions...
 
Upvote 0

Forum statistics

Threads
1,215,457
Messages
6,124,941
Members
449,197
Latest member
k_bs

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top