Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default VLOOKUP formula for multiple worksheets

Hello

I have a workbook with 4 worksheets within it (ACTIONS, ISSUES, RISKS,
PLAN). Each worksheet's first column is 'Due Date' and the second column is
'Status' (with either 'completed' or 'in progress' in each cell).

I want to have add a SUMMARY worksheet tab that summarises all the cells
within the workbook that have tasks in progress. i.e. the 'Status' columns
from the ACTIONS, ISSUES, RISKS, PLAN worksheets to be shown in one
worksheet; only where the status is 'in progress' (not completed), and to
show the 'due date' and any other relevant information from each row, from
each worksheet.

basically instead of going to each worksheet tab and filtering by 'in
progress' and sorting the due date order, I will be able to see all
outstanding tasks in one summary sheet.

Does anyone know the formula (VLOOKUP i presume) that will show (in the
summary worksheet) all tasks in progress with the due date in ascending order?

ive done this before but i cant remember it, it was something about naming
the range and locking cells with the $ symbol (if you dont use it you loose
it!!)

many thanks!!
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,766
Default VLOOKUP formula for multiple worksheets

Hi,

Try this:

1. Select the data range on the Actions sheet and assign it a name
(Ctrl+F3), say actions. When selecting the range for name assignment,
please select the header row. If there is no header for the 2 columns,
please create a header row (say, Date and Status) and use the same headings
on the three other sheets
2. Repeat step 1 for ranges on the other three sheets. The names assigned
should be issues, risks and plan
3. Save the file (try.xls) on the desktop
4. Create anew sheet and now go to Data Import External Data New
Database query
5. Select Excel files and click on OK
6. Browse to the desktop (in the right hand side pane), select try.xls (in
the left hand side pane) and click on Next
7. In the Choose column box, select Actions and click on the greater than
symbol.
8. Repeat step 7 for the other names as well
9. Click on Next and in the box, press OK
10. Click on the SQL button and type

Select * from actions
union all
select * from issues
union all
select * from risks
union all
select * from plan

Click on Finish

11. This will be one consolidated list of data spread across all sheets
12. Go to file Return Data to MS Office Excel
13. In the import data box, select any cell where you want the output
14. Now you can filter the Status column on 'In Progress'

If you edit data on any sheet, you just ned to right click and select
Refresh on the any cell of the output range.

Hope this helps.

--
Regards,

Ashish Mathur
Microsoft Excel MVP
www.ashishmathur.com

"jem-jems" wrote in message
...
Hello

I have a workbook with 4 worksheets within it (ACTIONS, ISSUES, RISKS,
PLAN). Each worksheet's first column is 'Due Date' and the second column
is
'Status' (with either 'completed' or 'in progress' in each cell).

I want to have add a SUMMARY worksheet tab that summarises all the cells
within the workbook that have tasks in progress. i.e. the 'Status' columns
from the ACTIONS, ISSUES, RISKS, PLAN worksheets to be shown in one
worksheet; only where the status is 'in progress' (not completed), and to
show the 'due date' and any other relevant information from each row, from
each worksheet.

basically instead of going to each worksheet tab and filtering by 'in
progress' and sorting the due date order, I will be able to see all
outstanding tasks in one summary sheet.

Does anyone know the formula (VLOOKUP i presume) that will show (in the
summary worksheet) all tasks in progress with the due date in ascending
order?

ive done this before but i cant remember it, it was something about naming
the range and locking cells with the $ symbol (if you dont use it you
loose
it!!)

many thanks!!


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default VLOOKUP formula for multiple worksheets

Ashish

many thanks for responding to my post. ive followed your instructions but i
get stuck at point 10, as it requests that i manually create the
relationships between the tables ..

do you have an email address that i can send my spreadsheet to you so you
can see what i mean?

many thanks again for your help!!!!

jem-jems

"Ashish Mathur" wrote:

Hi,

Try this:

1. Select the data range on the Actions sheet and assign it a name
(Ctrl+F3), say actions. When selecting the range for name assignment,
please select the header row. If there is no header for the 2 columns,
please create a header row (say, Date and Status) and use the same headings
on the three other sheets
2. Repeat step 1 for ranges on the other three sheets. The names assigned
should be issues, risks and plan
3. Save the file (try.xls) on the desktop
4. Create anew sheet and now go to Data Import External Data New
Database query
5. Select Excel files and click on OK
6. Browse to the desktop (in the right hand side pane), select try.xls (in
the left hand side pane) and click on Next
7. In the Choose column box, select Actions and click on the greater than
symbol.
8. Repeat step 7 for the other names as well
9. Click on Next and in the box, press OK
10. Click on the SQL button and type

Select * from actions
union all
select * from issues
union all
select * from risks
union all
select * from plan

Click on Finish

11. This will be one consolidated list of data spread across all sheets
12. Go to file Return Data to MS Office Excel
13. In the import data box, select any cell where you want the output
14. Now you can filter the Status column on 'In Progress'

If you edit data on any sheet, you just ned to right click and select
Refresh on the any cell of the output range.

Hope this helps.

--
Regards,

Ashish Mathur
Microsoft Excel MVP
www.ashishmathur.com

"jem-jems" wrote in message
...
Hello

I have a workbook with 4 worksheets within it (ACTIONS, ISSUES, RISKS,
PLAN). Each worksheet's first column is 'Due Date' and the second column
is
'Status' (with either 'completed' or 'in progress' in each cell).

I want to have add a SUMMARY worksheet tab that summarises all the cells
within the workbook that have tasks in progress. i.e. the 'Status' columns
from the ACTIONS, ISSUES, RISKS, PLAN worksheets to be shown in one
worksheet; only where the status is 'in progress' (not completed), and to
show the 'due date' and any other relevant information from each row, from
each worksheet.

basically instead of going to each worksheet tab and filtering by 'in
progress' and sorting the due date order, I will be able to see all
outstanding tasks in one summary sheet.

Does anyone know the formula (VLOOKUP i presume) that will show (in the
summary worksheet) all tasks in progress with the due date in ascending
order?

ive done this before but i cant remember it, it was something about naming
the range and locking cells with the $ symbol (if you dont use it you
loose
it!!)

many thanks!!


  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,766
Default VLOOKUP formula for multiple worksheets

Hi,

Click on OK on that box

--
Regards,

Ashish Mathur
Microsoft Excel MVP
www.ashishmathur.com

"jem-jems" wrote in message
...
Ashish

many thanks for responding to my post. ive followed your instructions but
i
get stuck at point 10, as it requests that i manually create the
relationships between the tables ..

do you have an email address that i can send my spreadsheet to you so you
can see what i mean?

many thanks again for your help!!!!

jem-jems

"Ashish Mathur" wrote:

Hi,

Try this:

1. Select the data range on the Actions sheet and assign it a name
(Ctrl+F3), say actions. When selecting the range for name assignment,
please select the header row. If there is no header for the 2 columns,
please create a header row (say, Date and Status) and use the same
headings
on the three other sheets
2. Repeat step 1 for ranges on the other three sheets. The names
assigned
should be issues, risks and plan
3. Save the file (try.xls) on the desktop
4. Create anew sheet and now go to Data Import External Data New
Database query
5. Select Excel files and click on OK
6. Browse to the desktop (in the right hand side pane), select try.xls
(in
the left hand side pane) and click on Next
7. In the Choose column box, select Actions and click on the greater than
symbol.
8. Repeat step 7 for the other names as well
9. Click on Next and in the box, press OK
10. Click on the SQL button and type

Select * from actions
union all
select * from issues
union all
select * from risks
union all
select * from plan

Click on Finish

11. This will be one consolidated list of data spread across all sheets
12. Go to file Return Data to MS Office Excel
13. In the import data box, select any cell where you want the output
14. Now you can filter the Status column on 'In Progress'

If you edit data on any sheet, you just ned to right click and select
Refresh on the any cell of the output range.

Hope this helps.

--
Regards,

Ashish Mathur
Microsoft Excel MVP
www.ashishmathur.com

"jem-jems" wrote in message
...
Hello

I have a workbook with 4 worksheets within it (ACTIONS, ISSUES, RISKS,
PLAN). Each worksheet's first column is 'Due Date' and the second
column
is
'Status' (with either 'completed' or 'in progress' in each cell).

I want to have add a SUMMARY worksheet tab that summarises all the
cells
within the workbook that have tasks in progress. i.e. the 'Status'
columns
from the ACTIONS, ISSUES, RISKS, PLAN worksheets to be shown in one
worksheet; only where the status is 'in progress' (not completed), and
to
show the 'due date' and any other relevant information from each row,
from
each worksheet.

basically instead of going to each worksheet tab and filtering by 'in
progress' and sorting the due date order, I will be able to see all
outstanding tasks in one summary sheet.

Does anyone know the formula (VLOOKUP i presume) that will show (in the
summary worksheet) all tasks in progress with the due date in ascending
order?

ive done this before but i cant remember it, it was something about
naming
the range and locking cells with the $ symbol (if you dont use it you
loose
it!!)

many thanks!!


  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,766
Default VLOOKUP formula for multiple worksheets

Hi,

If you wish, you may mail the file to me at ask(at)ashishmathur(dot)com.
Please mail a small file I.e. mail the relevant information only. Also,
please state the question clearly.

--
Regards,

Ashish Mathur
Microsoft Excel MVP
www.ashishmathur.com

"Ashish Mathur" wrote in message
...
Hi,

Click on OK on that box

--
Regards,

Ashish Mathur
Microsoft Excel MVP
www.ashishmathur.com

"jem-jems" wrote in message
...
Ashish

many thanks for responding to my post. ive followed your instructions but
i
get stuck at point 10, as it requests that i manually create the
relationships between the tables ..

do you have an email address that i can send my spreadsheet to you so you
can see what i mean?

many thanks again for your help!!!!

jem-jems

"Ashish Mathur" wrote:

Hi,

Try this:

1. Select the data range on the Actions sheet and assign it a name
(Ctrl+F3), say actions. When selecting the range for name assignment,
please select the header row. If there is no header for the 2 columns,
please create a header row (say, Date and Status) and use the same
headings
on the three other sheets
2. Repeat step 1 for ranges on the other three sheets. The names
assigned
should be issues, risks and plan
3. Save the file (try.xls) on the desktop
4. Create anew sheet and now go to Data Import External Data New
Database query
5. Select Excel files and click on OK
6. Browse to the desktop (in the right hand side pane), select try.xls
(in
the left hand side pane) and click on Next
7. In the Choose column box, select Actions and click on the greater
than
symbol.
8. Repeat step 7 for the other names as well
9. Click on Next and in the box, press OK
10. Click on the SQL button and type

Select * from actions
union all
select * from issues
union all
select * from risks
union all
select * from plan

Click on Finish

11. This will be one consolidated list of data spread across all sheets
12. Go to file Return Data to MS Office Excel
13. In the import data box, select any cell where you want the output
14. Now you can filter the Status column on 'In Progress'

If you edit data on any sheet, you just ned to right click and select
Refresh on the any cell of the output range.

Hope this helps.

--
Regards,

Ashish Mathur
Microsoft Excel MVP
www.ashishmathur.com

"jem-jems" wrote in message
...
Hello

I have a workbook with 4 worksheets within it (ACTIONS, ISSUES, RISKS,
PLAN). Each worksheet's first column is 'Due Date' and the second
column
is
'Status' (with either 'completed' or 'in progress' in each cell).

I want to have add a SUMMARY worksheet tab that summarises all the
cells
within the workbook that have tasks in progress. i.e. the 'Status'
columns
from the ACTIONS, ISSUES, RISKS, PLAN worksheets to be shown in one
worksheet; only where the status is 'in progress' (not completed), and
to
show the 'due date' and any other relevant information from each row,
from
each worksheet.

basically instead of going to each worksheet tab and filtering by 'in
progress' and sorting the due date order, I will be able to see all
outstanding tasks in one summary sheet.

Does anyone know the formula (VLOOKUP i presume) that will show (in
the
summary worksheet) all tasks in progress with the due date in
ascending
order?

ive done this before but i cant remember it, it was something about
naming
the range and locking cells with the $ symbol (if you dont use it you
loose
it!!)

many thanks!!

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Vlookup for multiple criteria, multiple worksheets jtoy Excel Worksheet Functions 4 January 25th 07 09:26 PM
VLOOKUP on multiple worksheets Brutus Excel Discussion (Misc queries) 6 April 1st 06 12:30 AM
Vlookup multiple worksheets SMRTnotCMPTRSMRT Excel Worksheet Functions 2 November 25th 05 09:25 PM
Vlookup multiple worksheets jschillin38 Excel Discussion (Misc queries) 0 September 29th 05 05:06 PM
vlookup multiple worksheets Laura Excel Worksheet Functions 6 September 23rd 05 05:57 PM


All times are GMT +1. The time now is 09:51 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"