Link to home
Start Free TrialLog in
Avatar of Svgmassive
Svgmassive

asked on

sequential numbering

i would like count the number value in column g.see the attached workbook
seqBook1.xls
Avatar of aikimark
aikimark
Flag of United States of America image

Did you mean this pattern?  (Every time a non-empty value appears in column G, the value in column E increases)
1		503
1		
1		
1		
1		
1		
1		
2		515
2		
2		
2		
3		115
4		101

Open in new window

If so, then put this formula in E21 and fill down
=E20+(LEN(G21)<>0)

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Glenn Ray
Glenn Ray
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
How about this instead in E20:

=IF(G19<>"",E19,COUNT(G$20:G20))

copied down as far as required down column E.

Thanks
Rob H
Rob, it doesn't work. :-(  After a pair of values, it increments after the second blank cell.

See example.
EE-seqBook1.xls
Aagh, only tried it down as far as first pair.

Thanks
Rob H
No one is giving any attention to the first and simplest formula?  I feel like Rodney Dangerfield -- no respect at all.
Heh...I added your formula to the example workbook, too, aikimark.  Yours increments with each occurrence of a value in column G; not exactly what the user asked for.  No disrespect meant. :-)
@Glenn

That is why I posted a different version of the result data.  There was a discordance between the description of the problem and the posted sample data.
@aikimark,
I agree that your formula is indeed the simplest and most-logical when wanting to display a continuous, incrementing count by values in another column.  But the questioner wrote in the workbook:

I would like to do sequential numbering in column e , where the numbers fall together eg. Row 32,115 and row 33 100 I would like row 31 to have the sam sequential number as the previous

There's some transcription issues here, but re-written to match the actual example data:

I would like to do sequential numbering in column E where the numbers fall together eg. Row 31, 115 and row 32 101, I would like row 31 to have the same sequential number as the previous [value].

And it does include an example of how the sequence should be displayed that agrees with this statement.

Just need the questioner to get back in here and clear it all up for us!

-Glenn
@Glenn

Without some algorithmic rule to determine whether the number is incremented or not, the problem is unsolvable for any instance (configuration and amount of data) but this one.  Such a solution is too trivial for anything but a manual process.
Avatar of Svgmassive
Svgmassive

ASKER

glen's formula is exactly what i am looking for =IF(G21="",F20,IF(G22<>"",F20,F20+1))
i am using the formula to alternate shade the worksheet,i just use the mod function in the populated column and everything is fine
@Svgmassive

Can you explain the algorithm?  Why does the 115 row still have the number 2 as opposed to the number 3?  I asked about this way back in comment http:#a40221380
I would like an answer.
Svgmassive, if you're looking for a contextual method for alternating shading rows, you should read my article on Conditional Formatting; it covers just this type of method.

-Glenn
Hi svgmassive,

If my original solution is acceptible, can you please properly close this question by clicking the "Accept this solution" link above that submission (not this post).  This will help ensure that future searches are meaningful to other EE members.

If you still have issues or questions, please let me know.

Thanks,
-Glenn
great
@svgmassive

Please answer my question about the numbering.