How to Auto-populate cell based on selection of a list item

A

AK9955

Hi,
I'd like to know how to auto-populate the cells of a specific column, based
on the user selecting a particular list item from a list.

E.g. If user selects "No" from "Married?" list box, then "Years Married"
cell is auto-populated with "N/A".

Thanks
Anna
 
B

Bob Phillips

Just put a formula in those cells referring back to the list value

=IF(H1="No","N/A",some_calculation)

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)
 
Top