Run Macro If Cell value = "Other"

  • Thread starter Thread starter bobbly_bob
  • Start date Start date
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
 
If Range("F4").Value = "Other" Then
Call yourMacro
End If

--

HTH

Bob Phillips

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

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top