Counting values in colums
Solved/Closed
                    
        
                    gunnarb
    
        
                    Posts
            
                
            2
                
                            Registration date
            Wednesday January 26, 2011
                            Status
            Member
                            Last seen
            January 27, 2011
            
                -
                            Jan 26, 2011 at 05:15 AM
                        
gunnarb - Feb 7, 2011 at 10:42 AM
        gunnarb - Feb 7, 2011 at 10:42 AM
        Related:         
- Counting values in colums
 - Counting names in excel - Guide
 - Counting occurrences in excel - Guide
 - Based on the values in cells b77 b81 c77 - Excel Forum
 - Stop counting days in excel when status is changed ✓ - Excel Forum
 - Based on the values in cells b77 b81 what function can automatically return the value in cell c77 ✓ - Excel Forum
 
9 responses
                
        
                    TrowaD
    
        
                    Posts
            
                
            2921
                
                            Registration date
            Sunday September 12, 2010
                            Status
            Contributor
                            Last seen
            December 27, 2022
            
            
                    555
    
    
                    
Feb 7, 2011 at 08:57 AM
    Feb 7, 2011 at 08:57 AM
                        
                    Hi Gunnar,
Take a look at your file:
https://authentification.site/files/26731266/Gunnar2.xls
The alfabet letters in B6:B27 have a conditional format. When 7 1's are next to each other the letter turns blue.
Note: the formulas used in row 45:66 can be hidden or turn the text color to white, to keep your sheet look clean.
Is this better?
Best regards,
Trowa
            Take a look at your file:
https://authentification.site/files/26731266/Gunnar2.xls
The alfabet letters in B6:B27 have a conditional format. When 7 1's are next to each other the letter turns blue.
Note: the formulas used in row 45:66 can be hidden or turn the text color to white, to keep your sheet look clean.
Is this better?
Best regards,
Trowa
                
        
                    rizvisa1
    
        
                    Posts
            
                
            4478
                
                            Registration date
            Thursday January 28, 2010
                            Status
            Contributor
                            Last seen
            May  5, 2022
            
            
                    766
    
    
                    
Jan 27, 2011 at 09:07 AM
    Jan 27, 2011 at 09:07 AM
                        
                    I think you need vba to do that. Is this waring to show up as you type in number or does it need to show up in some other way ?
                
                
            
                
        
                    gunnarb
    
        
                    Posts
            
                
            2
                
                            Registration date
            Wednesday January 26, 2011
                            Status
            Member
                            Last seen
            January 27, 2011
            
                    
Jan 27, 2011 at 09:53 AM
    Jan 27, 2011 at 09:53 AM
                        
                    hi 
when there is 7 in a row, it should just display somthing at the end colum
like when you input 1, 7 times in a row it lets you know
thanks
            when there is 7 in a row, it should just display somthing at the end colum
like when you input 1, 7 times in a row it lets you know
thanks
                
        
                    TrowaD
    
        
                    Posts
            
                
            2921
                
                            Registration date
            Sunday September 12, 2010
                            Status
            Contributor
                            Last seen
            December 27, 2022
            
            
                    555
    
    
                    
Jan 31, 2011 at 09:35 AM
    Jan 31, 2011 at 09:35 AM
                        
                    Hi Gunnarb,
You could use an extra column next to B (or wherever).
Use a simple SUM formula to count seven cells.
At the end of the column use the following formula:
=SUM(IF(C8:C23=7,1,0))
This is an array formula, confirm by hitting Ctrl+Shift+Enter.
When this formula shows a 1 you know 7 times a 1 are below each other.
If a 0 shows up this is not the case.
Does this work for you?
Best regards,
Trowa
            You could use an extra column next to B (or wherever).
Use a simple SUM formula to count seven cells.
At the end of the column use the following formula:
=SUM(IF(C8:C23=7,1,0))
This is an array formula, confirm by hitting Ctrl+Shift+Enter.
When this formula shows a 1 you know 7 times a 1 are below each other.
If a 0 shows up this is not the case.
Does this work for you?
Best regards,
Trowa
                
        
                    TrowaD
    
        
                    Posts
            
                
            2921
                
                            Registration date
            Sunday September 12, 2010
                            Status
            Contributor
                            Last seen
            December 27, 2022
            
            
                    555
    
    
                    
Feb 1, 2011 at 09:25 AM
    Feb 1, 2011 at 09:25 AM
                        
                    Hi Gunnar,
The strategy remains the same.
Take a look at the following file:
https://authentification.site/files/26620522/Gunnar.xls
Hope this helps.
Best regards,
Trowa
            The strategy remains the same.
Take a look at the following file:
https://authentification.site/files/26620522/Gunnar.xls
Hope this helps.
Best regards,
Trowa
                        
                    thanks for that, i might be able to use that
this is the table i am trying to use this in
https://authentification.site/files/26634931/v2011.xls
thanks
Gunnar
            this is the table i am trying to use this in
https://authentification.site/files/26634931/v2011.xls
thanks
Gunnar
                
        
                    TrowaD
    
        
                    Posts
            
                
            2921
                
                            Registration date
            Sunday September 12, 2010
                            Status
            Contributor
                            Last seen
            December 27, 2022
            
            
                    555
    
    
    
Feb 3, 2011 at 08:53 AM
Feb 3, 2011 at 08:53 AM
    So case solved?