data validation formula

W

Wanna Learn

Hello
I need a formula for data validation ... I tried several ways but it does
not work
If cell f6 = to "Quote" then input message should say "type in how many
months " if cell f6 does not equal to "Quote" do not show the input message
thanks
 
M

Martin Fishlock

Hi:

One way is to have a formula in a cell say f7 :

=if($f$6="Quote", ""Type in number of months >>","")
 
Top