Data Validation

Aberdham

Board Regular
Joined
Mar 8, 2018
Messages
163
Office Version
  1. 365
Platform
  1. Windows
Hi,

I have got a data set with multiple sheets, each represents an identical course number.

I am wondering if there is a way that I could select from the drop down list in the "master" sheet and have the sheet pop up by the selection value.

here is a link to my sheet:

https://1drv.ms/x/s!Aqt4VfikFsyKgRlLLaNEK3a_x1h0

Thank you in advance.

(NB: within those sheets, those rate/discount factor are implemented to calculate the pv, so each period is different, is there an alternative to get the average rate within a period?)
 
I just place your code there, it is probably at the wrong place.
so perhaps you could advise
 
Upvote 0

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
If you've put the code I supplied in the sheet module & it's not working, then please supply an updated workbook.
 
Upvote 0
I have managed to get it working. Thank you so much Fluff!!

one question, the code "brings" me to that selection page, is it possible to "pull" the selection page to the "master" sheet?
 
Upvote 0
OK, how about
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
   If Target.CountLarge > 1 Then Exit Sub
   If Target.Address <> "$D$6" Then Exit Sub
   Me.Range("17:" & Rows.Count).Clear
   If Not IsEmpty(Target) Then Sheets(CStr(Target.Value)).UsedRange.Copy Me.Range("A17")
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,165
Messages
6,123,391
Members
449,098
Latest member
ArturS75

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top