suzette0735
New Member
- Joined
- Jul 12, 2023
- Messages
- 31
- Office Version
- 365
- Platform
- Windows
Hi! I have two drop downs that change the format of the document I am working on. The first allows the user to choose which sheet they will work on (Estimate sheet, and Warehouse/Installer Copy), the second will update the sheet Estimate sheet so it will print with select rows/columns. I would like a third drop down to do the same as the latter too, but do not know if I am doing this right. Or if there is an easier way? Thanks!
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Range("F1"), Target) Is Nothing Then
Application.EnableEvents = False
Select Case Target.Value
Case "Estimate/Bid Sheet/Master": estimatebidsheet
Case "Warehouse/Installer Copy": warehousecopy
End Select
Application.EnableEvents = True
End If
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Range("H1"), Target) Is Nothing Then
Application.EnableEvents = False
Select Case Target.Value
Case "Entire Sheet": ENTIRESHEET
Case "Base Bid Pg 1, Base TTL": BaseBidPg1BaseTTL
End Select
Application.EnableEvents = True
End If
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Range("F1"), Target) Is Nothing Then
Application.EnableEvents = False
Select Case Target.Value
Case "Estimate/Bid Sheet/Master": estimatebidsheet
Case "Warehouse/Installer Copy": warehousecopy
End Select
Application.EnableEvents = True
End If
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Range("H1"), Target) Is Nothing Then
Application.EnableEvents = False
Select Case Target.Value
Case "Entire Sheet": ENTIRESHEET
Case "Base Bid Pg 1, Base TTL": BaseBidPg1BaseTTL
End Select
Application.EnableEvents = True
End If
End Sub