How to show "yes" or "No" in a cell if certain criteria is met?

B

Bojan

Hi,
I'm doing a report with monthly averages for each team. What I want is when
an average number is met at A2,... A3, ... to show "yes" or "no" something
like this:
A2 A3
123 yes
95 no
150 yes
 
S

ShaneDevenshire

Hi,

If you already have the average calculated in the spreadsheet, say in cell
A50, then you formula could be:
=IF(A2>A$50,"Yes","No")
 
Top