HOW TO USE THE { } IN A FORMULA

G

Guest

Hi,

I was checking one of the formula that appears as example:
{=SUM(IF($A1:$A20>=8,1,0))}

This is done by someone and the value return to 20 since all the cell have a
9 on it. But if I edit this cell, the { } will go away. and will give me the
#VALUE! message in the cell. can anyone tell me how I can add this?
 
D

Dave Peterson

There are alternatives to using your formula (entered with ctrl-shift-enter).

One of them is:
=COUNTIF(A1:A20,">="&8)

And another:
=SUMPRODUCT(--(A1:A20>=8))

Neither of these needs to be entered with: ctrl-shift-enter
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top