Excel - Using VBA Code To Copy Specific Value From A Cell When The Dropdown Box Changes That Value - Stack Overflow PDF
Excel - Using VBA Code To Copy Specific Value From A Cell When The Dropdown Box Changes That Value - Stack Overflow PDF
Join us in building a kind, collaborative learning community via our updated Code of Conduct.
Stack Overflow
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$H$13" Then
ActiveSheet.Scenarios(Target.Value).Show
End If
1 of 1 22/8/18, 22:00