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
- Gta 5 download apk pc - Download - Action and adventure
- Hitman 3 cheats - Guide
- Psiphon 3 download - Download - VPN
- Forza horizon 5 download free - Download - Racing
- Bluestacks 5 - Download - Android emulators
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