Hello,
To modify the formula to count values between 0 and 48 (inclusive), you can use the following formula:
=COUNTIFS(A2:A100, ">=0", A2:A100, "<=48")
COUNTIFS allows you to apply multiple conditions.
A2:A100, ">=0" ensures that the values are greater than or equal to 0.
A2:A100...