Hello!
I am running into a brick wall with an infinite loop that keeps occurring (I have no idea why) when I choose either "Rectangle" or "Circle" on my drop down menu.
Below is what I have in VBA - I copied it from a Excel video where it only had 1 parameter, and I need to have 2-3 parameters (Changing 2 different cells instead of only 1)
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
Select Case Range("C2")
End Sub
Any help would be greatly appreciated!
I am running into a brick wall with an infinite loop that keeps occurring (I have no idea why) when I choose either "Rectangle" or "Circle" on my drop down menu.
Below is what I have in VBA - I copied it from a Excel video where it only had 1 parameter, and I need to have 2-3 parameters (Changing 2 different cells instead of only 1)
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
Select Case Range("C2")
Case "Rectangle"
Range("A5") = "Orifice Length"
Range("A6") = "Orifice Width"
Case "Circle"
Range("A5") = "Orifice Diameter"
Range("A6") = ""
Range("C6") = ""
End Select
End Sub
Any help would be greatly appreciated!