how to create dynamic chart using a list box

twinny

New member
Joined
Jul 1, 2011
Messages
7
Reaction score
0
Points
0
I am trying to create a dynamic chart using a list box. I want the Week Selected from the List box displayed on Cell E4 and the corresponding values for the selected week populated. My Data is on Sheet titled “Data” and my Dynamic Chart on the second sheet. So the Chart changes based on the Weekly Data.


Please i will appreciate any help rendered from this forum.


Thank you
 

Attachments

  • Dynamic Charts.xlsx
    12.3 KB · Views: 287
Hi twinny...

I attached your sample workbook to this thread with a possible solution. When selecting an entry from your listbox, you can use the linked cell to calculate the corresponding cell address in the data sheet. The formula for doing this uses the Excel functions Address() and Indirect():
Code:
=INDIRECT(ADDRESS(Calculated_Row_Number;Calculated_Col_Number;;;Sheet_Name))
I have added some helping cells to you chart sheet. Hope this helps.

Regards :)
 

Attachments

  • Dynamic Charts.xlsx
    14.8 KB · Views: 394
Back
Top