Hey, I was wondering if anyone could help me out on this problem. I'm trying to round off my numbers to specific integers. Sorta like a step function (in algebraic terms).
For example, my first few intgers are 0-8-13. I want: 0<=X<8, 8<=X<13, etc.
So far, this is what I have:
It seems to work perfectly to there. However, when I try and enter the next set, an error pops up. This is what didn't work:=IF(C2>=0,IF(C2>=8,IF(C2>=13, IF(C2>=20, IF(C2>=35, IF(C2>=55, IF(C2>=85, IF(C2>=125, "blank", 85), 55), 35), 20), 13), 8 ),0 ), "blank2")
The bold being the new things that I added.=IF(C2>=0,IF(C2>=8,IF(C2>=13, IF(C2>=20, IF(C2>=35, IF(C2>=55, IF(C2>=85, IF(C2>=125, IF(C2>=200, "blank", 125), 85), 55), 35), 20), 13), 8 ),0 ), "blank2")
*C2 is where the raw data is inputted
Bookmarks