I have a command button which I want to change the value in the Combobox then print. I only have 2 regions (USA, Intl). The problem is that the combobox value updates, but the text within the combobox does not.
Here's what I have:
Sub PrintLines()
With Sheet1.Combobox4
.Value = "USA"
ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True
End With
With Sheet1.Combobox4
.Value = "International"
ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True
End With
End Sub
The combobox is within the print range, but when the value changes to "International" the numbers in the report update (all vlookups off the linked cell "M4") , but the text within the combobox still says "USA."
How do I get the text within the combobox to update also?
Thanks.
Here's what I have:
Sub PrintLines()
With Sheet1.Combobox4
.Value = "USA"
ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True
End With
With Sheet1.Combobox4
.Value = "International"
ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True
End With
End Sub
The combobox is within the print range, but when the value changes to "International" the numbers in the report update (all vlookups off the linked cell "M4") , but the text within the combobox still says "USA."
How do I get the text within the combobox to update also?
Thanks.