ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   100 + tabs need to pull data if criteria is met (https://www.excelbanter.com/excel-worksheet-functions/233234-100-tabs-need-pull-data-if-criteria-met.html)

Neall

100 + tabs need to pull data if criteria is met
 
I have 100 + worksheets which are all the same (except for the tab name they
are different per customer), one cell (the same cell for every sheet) has the
date that the customer is going to be renewed another cell has the customer
names and one cell has the amount paid for the products

I have a tally sheet that I want to break out per year to show which
customer will be renewed in 07 - 08 .... etc and their renewal date and what
they paid the previous year.

Any suggestions?

Thanks in advance



--
Neall

Ron de Bruin

100 + tabs need to pull data if criteria is met
 
Hi Neall

You can create a new sheet with links to the cells you want in every sheet with this code example
http://www.rondebruin.nl/summary.htm

You can filter that sheet then to get the results you want


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm




"Neall" wrote in message ...
I have 100 + worksheets which are all the same (except for the tab name they
are different per customer), one cell (the same cell for every sheet) has the
date that the customer is going to be renewed another cell has the customer
names and one cell has the amount paid for the products

I have a tally sheet that I want to break out per year to show which
customer will be renewed in 07 - 08 .... etc and their renewal date and what
they paid the previous year.

Any suggestions?

Thanks in advance



--
Neall


Neall

100 + tabs need to pull data if criteria is met
 
Perfect, but any suggestion on how I can skip the first X number of sheets?

Thanks

--
Neall


"Ron de Bruin" wrote:

Hi Neall

You can create a new sheet with links to the cells you want in every sheet with this code example
http://www.rondebruin.nl/summary.htm

You can filter that sheet then to get the results you want


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm




"Neall" wrote in message ...
I have 100 + worksheets which are all the same (except for the tab name they
are different per customer), one cell (the same cell for every sheet) has the
date that the customer is going to be renewed another cell has the customer
names and one cell has the amount paid for the products

I have a tally sheet that I want to break out per year to show which
customer will be renewed in 07 - 08 .... etc and their renewal date and what
they paid the previous year.

Any suggestions?

Thanks in advance



--
Neall



Ron de Bruin

100 + tabs need to pull data if criteria is met
 
One way is to add a test for the index
This will start with sheet 5

If sh.Name < Newsh.Name And sh.Visible And sh.Index 4 Then

Note: I add this to the code line
And sh.Index 4


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm




"Neall" wrote in message ...
Perfect, but any suggestion on how I can skip the first X number of sheets?

Thanks

--
Neall


"Ron de Bruin" wrote:

Hi Neall

You can create a new sheet with links to the cells you want in every sheet with this code example
http://www.rondebruin.nl/summary.htm

You can filter that sheet then to get the results you want


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm




"Neall" wrote in message ...
I have 100 + worksheets which are all the same (except for the tab name they
are different per customer), one cell (the same cell for every sheet) has the
date that the customer is going to be renewed another cell has the customer
names and one cell has the amount paid for the products

I have a tally sheet that I want to break out per year to show which
customer will be renewed in 07 - 08 .... etc and their renewal date and what
they paid the previous year.

Any suggestions?

Thanks in advance



--
Neall



Neall

100 + tabs need to pull data if criteria is met
 
That worked, now another few follow up questions

How can I format the entire sheet to be center,center and shade the header
cells a light grey and bold them?

Another thing I want to add is a the filter option at the top with an
automatic filter for a column ascending.




Any suggestions?

Thanks in advance
--
Neall


"Ron de Bruin" wrote:

One way is to add a test for the index
This will start with sheet 5

If sh.Name < Newsh.Name And sh.Visible And sh.Index 4 Then

Note: I add this to the code line
And sh.Index 4


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm




"Neall" wrote in message ...
Perfect, but any suggestion on how I can skip the first X number of sheets?

Thanks

--
Neall


"Ron de Bruin" wrote:

Hi Neall

You can create a new sheet with links to the cells you want in every sheet with this code example
http://www.rondebruin.nl/summary.htm

You can filter that sheet then to get the results you want


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm




"Neall" wrote in message ...
I have 100 + worksheets which are all the same (except for the tab name they
are different per customer), one cell (the same cell for every sheet) has the
date that the customer is going to be renewed another cell has the customer
names and one cell has the amount paid for the products

I have a tally sheet that I want to break out per year to show which
customer will be renewed in 07 - 08 .... etc and their renewal date and what
they paid the previous year.

Any suggestions?

Thanks in advance



--
Neall



Ron de Bruin

100 + tabs need to pull data if criteria is met
 
Hi Neall
..
Record a macro when you do it manual.

Post back if you need more help


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm




"Neall" wrote in message ...
That worked, now another few follow up questions

How can I format the entire sheet to be center,center and shade the header
cells a light grey and bold them?

Another thing I want to add is a the filter option at the top with an
automatic filter for a column ascending.




Any suggestions?

Thanks in advance
--
Neall


"Ron de Bruin" wrote:

One way is to add a test for the index
This will start with sheet 5

If sh.Name < Newsh.Name And sh.Visible And sh.Index 4 Then

Note: I add this to the code line
And sh.Index 4


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm




"Neall" wrote in message ...
Perfect, but any suggestion on how I can skip the first X number of sheets?

Thanks

--
Neall


"Ron de Bruin" wrote:

Hi Neall

You can create a new sheet with links to the cells you want in every sheet with this code example
http://www.rondebruin.nl/summary.htm

You can filter that sheet then to get the results you want


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm




"Neall" wrote in message ...
I have 100 + worksheets which are all the same (except for the tab name they
are different per customer), one cell (the same cell for every sheet) has the
date that the customer is going to be renewed another cell has the customer
names and one cell has the amount paid for the products

I have a tally sheet that I want to break out per year to show which
customer will be renewed in 07 - 08 .... etc and their renewal date and what
they paid the previous year.

Any suggestions?

Thanks in advance



--
Neall




All times are GMT +1. The time now is 11:37 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com