=IF(SUM(J8:R8)<=8,"Fail","Pass")
Is that something you can work with?
--------------------------
Regards,
Ron
Microsoft MVP (Excel)
(XL2003, Win XP)
"Nadine" <Nad...@discussions.microsoft.com> wrote in message
news:843C581C-9778-4AD4...@microsoft.com...
> Need help with a formula.
>
> Want to sum the total of a range of cells, then if it is less then a
> specific number the value should be "Fail", if greater then that number
> then
> value should be "Pass"
>
> I've used the And function True or False results. But they want the value
> in the cells to say either Pass or Fail.
>
> current formula: =AND(SUM(J8:R8)>0,SUM(J8:R8)<8)
>
> Thanks
Does that help?
--------------------------
Regards,
Ron
Microsoft MVP (Excel)
(XL2003, Win XP)
"Nadine" <Nad...@discussions.microsoft.com> wrote in message
news:C8449109-FCF1-43D7...@microsoft.com...
Regards,
Ron
Microsoft MVP (Excel)
(XL2003, Win XP)
"Nadine" <Nad...@discussions.microsoft.com> wrote in message
news:64B1CC8B-127E-4986...@microsoft.com...
=IF(COUNT(J8:R8),IF(SUM(J8:R8)<=8,"Fail","Pass"),"")
Assumes the "Fail", "Pass" formulas are in column A
To count the occurences of Pass or Fail
=COUNTIF(A:A,"Fail")
=COUNTIF(A:A,"Pass")
Gord Dibben MS Excel MVP
On Tue, 4 Mar 2008 12:48:06 -0800, Nadine <Nad...@discussions.microsoft.com>
wrote: