Run Macro If Cell value = "Other"

B

bobbly_bob

Alright, I have a very simple macro at the moment that unhides a column
and adjusts the print area to suit.

What I need is a maco that will run this macro if the cell F4 = "Other"
from a drop down menu.

Seems painfully simple I just can't find where it is.

Cheers
 
B

Bob Phillips

If Range("F4").Value = "Other" Then
Call yourMacro
End If

--

HTH

Bob Phillips

(replace xxxx in the email address with gmail if mailing direct)
 
Top