Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

VBA Cell DrillDown

Status
Not open for further replies.

EliseFreedman

Programmer
Dec 6, 2002
470
GB
Hi There

I am in the middle of constructing a team tracker which will be used to track progress on all our projects for example what is overdue, on track, not started. I have got a page per project listing any actions, the actionee and the status. Some of the actions may be listed against more than 1 actionee. I have then got a summary page which consists of 3 tables - overdue, on track and not started. the Team members names are listed on the left hand side and the projects are listed across the top. I have then used Sumproduct and IsNumber to calculate the number of actions against each person for that category regardless of whether or not they are the only actonee

e.g Overdue
Project 1 Project 2 Project 3
Team Member 1 2 1 0
Team Member 2 3 0 4
Team Member 3 4 2 7

I would now like to be able to add functionality whereby when you click on cell containing the number of actions for the chosen project and team member, it expands to show the detail of the actions in the rows below, a bit like when you click on a pivot table. I didnt go the pivot table route because i wanted to be able to split out actions that were against more than 1 person. Is this possible and if so how would you do it. I have come across similar for expanding columns to show detail but that wouldnt work for my scenario.
 
hi,

So how is the data in the overdue table related to some other table that has the detail?

Skip,

[glasses]Just traded in my old subtlety...
for a NUANCE![tongue]
 
the details of the overdue actions and all the other actions are help in separate spreadsheets for each project

For example my page for project 1 looks like this

task, comments, actionee, target date, timescale, status(i.e overdue) RAG Status

It will list all the actions some of which will have more than one actionee (whence why I havnt used a pivot).

What i basically want to do is if im looking in the summary for Project 1, team member 1 over due actions I can click on the cell holding the amount of actions and it will expand and the detail behind the number ie the task, comments, actionee, target date etc will be pasted into the cells. The user can then click again and the detail will disappear
 
the details of the overdue actions and all the other actions are help in [red]separate spreadsheets for each project[/red]
So you want to make it [red]difficult[/red], I see.

I would VERY STRONGLY urge you to redesign your workbook. These tables ought to be consolidated into one table. It will make life much simpler!

Skip,

[glasses]Just traded in my old subtlety...
for a NUANCE![tongue]
 
ONE table...
[tt]
ProjectID, task, comments, actionee, target date, timescale, status(i.e overdue) RAG Status
[/tt]


Skip,

[glasses]Just traded in my old subtlety...
for a NUANCE![tongue]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top