SOLVED

How do i Duplicate the result of an IF command into other cells?

Copper Contributor

I have a dropdown menu for the user to choose a code, in the next cell i used =IF(G2=201,"YES",""), and the next cell i used =IF(G2="All","YES","") , however i would like 'yes' to appear in both cells if 'all' is chosen. How do I do this?

2 Replies
best response confirmed by allyreckerman (Microsoft)
Solution

@Martin_Stolworthy_1973 

Change the first formula to

 

=IF(OR(G2={201,"All"}),"YES","")

1 best response

Accepted Solutions
best response confirmed by allyreckerman (Microsoft)
Solution

@Martin_Stolworthy_1973 

Change the first formula to

 

=IF(OR(G2={201,"All"}),"YES","")

View solution in original post