HOW CAN I IMPLEMENT SUMIF(D1:D6,">AVERAGE(D1:D6)")

  • Thread starter Thread starter Bill Friedman
  • Start date Start date
Move the average function out of the quotes; while there it's being treated
as part of the text string rather than being evaluated:
=sumif(d1:d6,">" & average(d1:d6))
 
Back
Top