Adding 1 to an existing number if criteria is matched?
Solved/Closed
rshelton22
Posts
2
Registration date
Tuesday June 4, 2013
Status
Member
Last seen
June 5, 2013
-
Jun 4, 2013 at 02:35 PM
Blocked Profile - Jun 8, 2013 at 06:56 PM
Blocked Profile - Jun 8, 2013 at 06:56 PM
Related:
- Adding 1 to an existing number if criteria is matched?
- Fnaf 1 download pc - Download - Horror
- Tentacle locker 1 - Download - Adult games
- Fnia 1 - Download - Adult games
- Igi 1 download - Download - Shooters
- Poppy playtime chapter 1 download pc - Download - Horror
4 responses
rshelton22
Posts
2
Registration date
Tuesday June 4, 2013
Status
Member
Last seen
June 5, 2013
Jun 5, 2013 at 11:54 AM
Jun 5, 2013 at 11:54 AM
Could use some help.. pulling my hair out.. =(
I have looked at this a number of different ways.
First one, you would have to write a macro that starts at the a1 cell and continues to index by 1, and see is a value there. If it is then store it, and check the next cell. and so on.....then seprate all arrays that are stored and present them into a finished cell for reporting.
Or, you can highlight the cells you wish to have indexed, and filter them. That is a built in funtion of Excel.
Otherwise, you really need to be using a DB for records, then you can query for all records with "XX" in the name, and sum them.
First one, you would have to write a macro that starts at the a1 cell and continues to index by 1, and see is a value there. If it is then store it, and check the next cell. and so on.....then seprate all arrays that are stored and present them into a finished cell for reporting.
Or, you can highlight the cells you wish to have indexed, and filter them. That is a built in funtion of Excel.
Otherwise, you really need to be using a DB for records, then you can query for all records with "XX" in the name, and sum them.
TrowaD
Posts
2921
Registration date
Sunday September 12, 2010
Status
Moderator
Last seen
December 27, 2022
555
Jun 6, 2013 at 11:17 AM
Jun 6, 2013 at 11:17 AM
Hi RShelton,
Please leave your hair alone, it will leave you eventually. ;)
The following code will work for one sheet:
To count for all sheets I would paste them all below each other in one sheet if possible.
And what are your thoughts on the coloring of the numbers?
Use random colors?
How many different initials are we talking about?
Can we asign a color to an initial or do the different kind of initials change over time?
Maybe it's best to share your workbook (without personal info) to a filesharing site like www.speedyshare.com or ge.tt. This way a more suitable solution can be found.
Best regards,
Trowa
Please leave your hair alone, it will leave you eventually. ;)
The following code will work for one sheet:
Sub CountInitials() Dim x, y, z, lRow As Integer lRow = Range("A" & Rows.Count).End(xlUp).Row z = 1 For Each cell In Range("A1:A" & lRow) x = z y = 0 If cell.Offset(0, 1).Value = vbNullString Then cell.Offset(0, 1).Value = y + 1 y = y + 1 Do x = x + 1 If Range("A" & x).Value = cell.Value Then Range("B" & x).Value = y + 1 y = y + 1 End If Loop Until x = lRow End If z = z + 1 Next cell End Sub
To count for all sheets I would paste them all below each other in one sheet if possible.
And what are your thoughts on the coloring of the numbers?
Use random colors?
How many different initials are we talking about?
Can we asign a color to an initial or do the different kind of initials change over time?
Maybe it's best to share your workbook (without personal info) to a filesharing site like www.speedyshare.com or ge.tt. This way a more suitable solution can be found.
Best regards,
Trowa
Thanks everyone for the help!!
this is what I used:
IF(VLOOKUP(A5,$A$5:$A$9,COLUMNS($A$5:A$9),FALSE)="MD",C4+1,IF(VLOOKUP(A5,$A$5:$A$9,COLUMNS($A$5:A$9),FALSE)="BL",C4+1,IF(VLOOKUP(A5,$A$5:$A$9,COLUMNS($A$5:A$9),FALSE)="KP",C4+1)))
i then went and mass formated the rows to change color based on column A.. i am not sure how i got it but it is doing what i want it to for now..
Much appreciation!!
this is what I used:
IF(VLOOKUP(A5,$A$5:$A$9,COLUMNS($A$5:A$9),FALSE)="MD",C4+1,IF(VLOOKUP(A5,$A$5:$A$9,COLUMNS($A$5:A$9),FALSE)="BL",C4+1,IF(VLOOKUP(A5,$A$5:$A$9,COLUMNS($A$5:A$9),FALSE)="KP",C4+1)))
i then went and mass formated the rows to change color based on column A.. i am not sure how i got it but it is doing what i want it to for now..
Much appreciation!!