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

  • Thread starter Thread starter Bojan
  • Start date Start date
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
 
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")
 
Back
Top