How do I add a drop down list of strings that represent different worksheet names in Excel 2007? -


Recently my job is placed on a reporting project, my overall purpose is to report 9 different charts Which can also be filtered by data and by group. There are 22 different groups and I need to drill down to show a report from the individual month, week, and day. I have to do all this in Excel in 2007. For now, I am working on showing results from the month and for all the different application groups and for all the groups Summary

The way in which I have installed it is a workbook containing 2 worksheets , 1 in which there are 9 lines, let's call this dashboard_ell. This graph is linked to another sheet that contains all the information for each article, let's call it Chart_Data.

Can you imagine, from which chart data is coming? Chart_Data references some tables in another workbook, which includes raw data, pivot tables, and matrix tables. I have set it on a worksheet that contains all the raw data in a table. A worksheet contains all the spindle tables (1 pivot table for each chart) so that it touches raw data and gives me results. I have created 23 different worksheets that have these results, 1 for each group (I have used group filters on each piet table) and 1 as the summary for all groups. I have also created 23 different worksheets, where I have created matrix tables for each pivot table result. These tables are used because whenever I change a pivot table for a different group, the results change and sometimes the columns or rows are omitted, so if no data is read, I use tables It has been made that the pivot table is for reference cells, which basically act as sparse, if the pivot table has empty values, these charts are different Nine months are present in the form of rows of all possible combinations and different columns. Chart_data from the previous workbook references these matrix tables.

I used a VLOOKUP function in the chart code that is linked to a drop down list. For example, please select one month: drop down January February March ... Vlookup all months knows that when I only show a number of charts for that related month a month I choose. That's why my monthly objective has been fulfilled. Now for the Apps Group, I need another drop down box which will reference different matrix table worksheets in my workbook. If I select a group from drop down, then VLUKUP will go with the appropriate information in that appropriate sheet.

The problem is, how do I give it to identify different sheets? For example,

  = VLOOKUP (C3, '[Blah-Blow_Vava_churs.xlsx] Group 1 chart data'! $ A $ 20: $ B $ 32, 2)   

How can I have a change in "Group 1" with drop down selection?

I know it has been rotating and misleading for a long time, but I'm not sure how to tell it further. Thank you so much.

You can use an indirect () example;

  = VLOOKUP (C3, indirect ("[HPSM_" and C1 and ".xlsx] sheet 1! $ A $ 4: $ B $ 16"), 2)    

Comments

Popular posts from this blog

mysql - BLOB/TEXT column 'value' used in key specification without a key length -

c# - Using Vici cool Storage with monodroid -

python - referencing a variable in another function? -