Have a list of numbers1234891011121415202122I need other cells to list the range where the numbers follow in a sequential order, for example1-48-1214-1520-22So one cell would list 1 through X where X is last number listed in sequential order (in this case 4). Once a number is skipped then it is skipped in our next cell which only starts with the next number that is listed, in this case 8 and goes until that string of sequential numbers is broken, in this case 12. And so on… any ideas?
12/11/2009 10:23:19 AM
lmgtfy...http://www.ozgrid.com/forum/showthread.php?t=72891
12/11/2009 10:30:57 AM
need it to be a formula solution, not macro
12/11/2009 10:33:12 AM
figured it out... bit ghetto, but works
12/11/2009 11:27:44 AM
good, I'll hijack...how hard is it/how long does it take to start picking up VB/writing macros? Can I just get a dummies book to go from there? My only issue with that is that I've tried reading books for HTML and it doesn't get me very far.... some basics and then I hit a wall with just reading shit.
12/11/2009 11:40:19 AM
^^ What'd you end up doing?
12/11/2009 11:42:43 AM
^^ VBA for dummies. Great book, got me comfortable in a day of work.
12/11/2009 11:44:52 AM
One day to learn VB in Excel.
12/11/2009 11:55:22 AM
A123489101112141516181920B1B2 and down is =IF(A2-A1=1,B1,A2) Cstarting in C5 (where the first sequence ends) =IF(B5=B4,"",B4) (repeats down)Dstarting in D5 (where the first sequence ends) =IF(B5=B4,"",A4) (repeats down)Estarting in E5 (where the first sequence ends) =IF(D5="","",CONCATENATE(C5,"-",D5))[Edited on December 11, 2009 at 11:58 AM. Reason : c]
12/11/2009 11:57:52 AM
Trying to do a round robin on the combos at Quick Wok again, I see
12/11/2009 12:31:00 PM
Tech Talk? Really?
12/11/2009 1:20:32 PM
12/11/2009 2:23:12 PM