Related Posts
Additional Posts in Excel Genius
Anyone know what these badges are?

Still don't have xlookup. #fomo
Would anyone be willing to teach me vlookup?
New to Fishbowl?
Download the Fishbowl app to
unlock all discussions on Fishbowl.
unlock all discussions on Fishbowl.





=(ROUNDUP(A1/10,0)*10)-9&"-"&ROUNDUP(A1/10,0)*10
=IFS(AND(A1>=1,A1<=10),”1-10”,AND(A1>=11,A1<=20),”11-20”... and so on for however many groups you need
Yep this is how I'd do it
Create a Table with starting value and ending value (make sure that it is in ascending order) with a result column. So Start value, end value, category. Then use the LOOKUP formula
This is the easiest way, if there are updates to ranges or outcomes then just update the table... its the vlookup on the table with TRUE ending
(Int( (n-1) / 10)*10 + 1) & "-" & (int( (n-1) / 10)*10 + 10)
Pwc1 and private equity associate 1 got it
Google it
You must have not read what this group is for. Please go google that
IFS(condition 1, output, condition 2, output)
=FLOOR(A1,10)+1&"-"& CEILING (A1,10)
What if I don’t want increments of 10. Let’s say first gap is 250, second 500, this 50. Would this still work
VBA?