Conditional formatting expert needed! Comparing 2 arrays.
Closed
                    
        
                    SaintNick
    
        
                    Posts
            
                
            1
                
                            Registration date
            Wednesday November  9, 2016
                            Status
            Member
                            Last seen
            November  9, 2016
            
                -
                            Nov  9, 2016 at 09:56 AM
                        
TrowaD Posts 2921 Registration date Sunday September 12, 2010 Status Contributor Last seen December 27, 2022 - Nov 21, 2016 at 11:35 AM
        TrowaD Posts 2921 Registration date Sunday September 12, 2010 Status Contributor Last seen December 27, 2022 - Nov 21, 2016 at 11:35 AM
        Related:         
- Conditional formatting expert needed! Comparing 2 arrays.
- 텐타클 락커 2 - Download - Adult games
- Fan expert 4 - Download - Cleaning and optimization
- My cute roommate 2 - Download - Adult games
- Fnia 2 - Download - Adult games
- Feeding frenzy 2 download - Download - Arcade
1 response
                
        
                    TrowaD
    
        
                    Posts
            
                
            2921
                
                            Registration date
            Sunday September 12, 2010
                            Status
            Contributor
                            Last seen
            December 27, 2022
            
            
                    555
    
    
                    
Nov 10, 2016 at 11:25 AM
    Nov 10, 2016 at 11:25 AM
                        
                    Hi SaintNick,
For red use:
=IF(ISERROR(VLOOKUP($A3,$A$10:$B$12,2,0)),TRUE,FALSE)
For orange use:
=IF(VLOOKUP($A3,$A$10:$B$12,2)<$B3,TRUE,FALSE)
For dark green use:
=IF(VLOOKUP($A3,$A$10:$B$12,2)$B3,TRUE,FALSE)
For light green use:
=IF(VLOOKUP($A3,$A$10:$B$12,2)>$B3,TRUE,FALSE)
Always happy to help a saint ;).
Best regards,
Trowa
            For red use:
=IF(ISERROR(VLOOKUP($A3,$A$10:$B$12,2,0)),TRUE,FALSE)
For orange use:
=IF(VLOOKUP($A3,$A$10:$B$12,2)<$B3,TRUE,FALSE)
For dark green use:
=IF(VLOOKUP($A3,$A$10:$B$12,2)$B3,TRUE,FALSE)
For light green use:
=IF(VLOOKUP($A3,$A$10:$B$12,2)>$B3,TRUE,FALSE)
Always happy to help a saint ;).
Best regards,
Trowa
 
        
    
    
        
    
    
    


Nov 20, 2016 at 07:38 PM
=IF(ISERROR(VLOOKUP($A3,$A$10:$B$12,2,0)),TRUE,FALSE)
becomes...
=VLOOKUP($A3,$A$10:$B$12,2,0)
etc
Also, to just find the ID...
=MATCH($A3,$A$10:$B$12,0)
Nov 21, 2016 at 11:35 AM