I’m trying to return the same number if the value of a cell is within a specific range. If the cell C value is within .875-1.125 it returns $29. If outside of that range it returns $56. This is the formula I tried that didn’t work:
IF(
C>=.875,
29,
IF(
C<=1.125,
29,
56
)
)