Return a value from a data set
Solved/Closed
Related:
- Return a value from a data set
- Display two columns in data validation list but return only one - Guide
- Tmobile data check - Guide
- Transfer data from one excel worksheet to another automatically - Guide
- Mint mobile data not working ✓ - Network Forum
- Based on the values in cells b77:b81, what function can automatically return the value in cell c77? ✓ - Excel Forum
3 responses
rizvisa1
Posts
4478
Registration date
Thursday January 28, 2010
Status
Contributor
Last seen
May 5, 2022
766
Jun 7, 2010 at 05:58 AM
Jun 7, 2010 at 05:58 AM
Could you please upload a sample file with sample data etc on some shared site like https://authentification.site , http://wikisend.com/ , http://www.editgrid.com etc and post back here the link to allow better understanding of how it is now and how you foresee. Based on the sample book, could you re-explain your problem too
rizvisa1
Posts
4478
Registration date
Thursday January 28, 2010
Status
Contributor
Last seen
May 5, 2022
766
Jun 7, 2010 at 07:04 AM
Jun 7, 2010 at 07:04 AM
Try this
=INDEX(A:K, MATCH(a13,A:A,0), MATCH(b13,1:1, 0))
perhaps better would be
=IF(OR(ISERROR(MATCH(a13,A:A,0)), ISERROR(MATCH(b13,1:1, 0))), "ERROR HERE", INDEX(A:K, MATCH(a13,A:A,0), MATCH(b13,1:1, 0)))
=INDEX(A:K, MATCH(a13,A:A,0), MATCH(b13,1:1, 0))
perhaps better would be
=IF(OR(ISERROR(MATCH(a13,A:A,0)), ISERROR(MATCH(b13,1:1, 0))), "ERROR HERE", INDEX(A:K, MATCH(a13,A:A,0), MATCH(b13,1:1, 0)))
https://docs.google.com/spreadsheets/d/1xFtUXoc_YyIUciosQ0Jarm93W7u1eUMFlS9Lbpw0a3k/edit?hl=en&hl=en
this is the spreadsheet... now given the values of A13 and B13 will be given and will correspond to the headings data, we need the answer to be the value which is the intersection.
I mean for given example, when A13 is 50, B13 is 6, answer should be 175 and when A14 is 10 and B14 is 8, answer should be 250.
i think now its clear. can u kindly help
this is the spreadsheet... now given the values of A13 and B13 will be given and will correspond to the headings data, we need the answer to be the value which is the intersection.
I mean for given example, when A13 is 50, B13 is 6, answer should be 175 and when A14 is 10 and B14 is 8, answer should be 250.
i think now its clear. can u kindly help