Fola

sbog

New Member
Joined
Jun 12, 2024
Messages
2
Office Version
  1. 365
  2. Prefer Not To Say
Platform
  1. Windows
New to playing with formulas. Can someone help me to write a formula that would basically state:

If c5:c15 has a value equal to 1 or greater then the value of each cell in c5:c15 would be returned as .25 and then all the values returned of .25 would be added to a sum?
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
Welcome to the forum. I feel like something is missing. If C5:C15 values are equal to 1 or greater than C5:C15 values (themselves?) then return .25. Then sum all of the .25 values?

Comparing the values to themselves in this case doesn't make much sense. Perhaps you meant to type a different range for the greater than comparison?
 
Upvote 0
Is this what you're looking for?
Book1
C
54
61
70
80
94
106
110
122
136
143
150
16
171.75
Sheet1
Cell Formulas
RangeFormula
C17C17=COUNTIF(C5:C15,">=1")*0.25
 
Upvote 0
Solution
maybe this:

Book1
ABCD
1
2
3
4
5-111.25
619
72
825
919
104
11-15
12-3
13-3
14-5
15-3
Sheet1
Cell Formulas
RangeFormula
D5D5=SUM(IF(C5:C15>=1,0.25,0))
 
Upvote 0
Is this what you're looking for?
Book1
C
54
61
70
80
94
106
110
122
136
143
150
16
171.75
Sheet1
Cell Formulas
RangeFormula
C17C17=COUNTIF(C5:C15,">=1")*0.25
Yes, perfect, thanks for the quick reply and I see what I was doing wrong! Thanks so much!
 
Upvote 0

Forum statistics

Threads
1,221,838
Messages
6,162,286
Members
451,759
Latest member
damav78

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top