Returning Value if Criteria falls w/i range
Solved/Closed
                                    
                        kstetner                    
                                    -
                            Jun 17, 2011 at 10:16 AM
                        
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - Jun 17, 2011 at 06:01 PM
        rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - Jun 17, 2011 at 06:01 PM
        Related:         
- Use the ifs function to return 5 if cell a5 contains the value 3
 - Psiphon 3 - Download - VPN
 - Gta 5 download apk pc - Download - Action and adventure
 - Hitman 3 cheats - Guide
 - Insert a function in cell b2 to display the current date from your system. ✓ - Excel Forum
 - Based on the values in cells b77 b88 what function can ✓ - Excel Forum
 
1 response
                
        
                    rizvisa1
    
        
                    Posts
            
                
            4478
                
                            Registration date
            Thursday January 28, 2010
                            Status
            Contributor
                            Last seen
            May  5, 2022
            
            
                    766
    
    
                    
Jun 17, 2011 at 01:10 PM
    Jun 17, 2011 at 01:10 PM
                        
                    you can use lookup
some thing like this
=VLOOKUP(D1,A:C,3)
D1: cell where you are typing the value
A:C : same as your columns
one catch is that if i type some thing less than 1,250,001 , then it will return error. You can trap it too by use of some thing like this
=IF(ISERROR(VLOOKUP(D1,A:C,3)),"",VLOOKUP(D1,A:C,3))
            some thing like this
=VLOOKUP(D1,A:C,3)
D1: cell where you are typing the value
A:C : same as your columns
one catch is that if i type some thing less than 1,250,001 , then it will return error. You can trap it too by use of some thing like this
=IF(ISERROR(VLOOKUP(D1,A:C,3)),"",VLOOKUP(D1,A:C,3))
        
    
    
    
    
Jun 17, 2011 at 02:17 PM
Jun 17, 2011 at 06:01 PM