How do I Change the value in a count function from 1 to .25

G

Guest

I need to count my cells that have numbers in them every cell with a number
needs to = .25 not 1. When I use the count function it uses values 1, 2, 3
I need it to count .25, .50, .75, 1
 
D

David Biddulph

n2lth said:
I need to count my cells that have numbers in them every cell with a number
needs to = .25 not 1. When I use the count function it uses values 1, 2,
3
I need it to count .25, .50, .75, 1

Multiply the answer by 0.25?
 
J

jjj912

I'd try something like sum(if(isnumber(<range>),.25,0))

Enter as an array formula by pressing control-shift-enter. (This will
put the curly brackets {} around the formula.)

This will see if the cell has a number in it and add 0.25 to the total.
 

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