Look for values from a different sheet and return it
Closed
Need2Learn
Posts
2
Registration date
Tuesday December 4, 2012
Status
Member
Last seen
December 4, 2012
-
Dec 4, 2012 at 01:41 PM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - Dec 4, 2012 at 03:36 PM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - Dec 4, 2012 at 03:36 PM
Related:
- Look for values from a different sheet and return it
- Google sheet right to left - Guide
- Windows network commands cheat sheet - Guide
- Little alchemy cheat sheet - Guide
- Mark sheet in excel - Guide
- Zuma return - Download - Puzzle
2 responses
rizvisa1
Posts
4478
Registration date
Thursday January 28, 2010
Status
Contributor
Last seen
May 5, 2022
766
Dec 4, 2012 at 01:55 PM
Dec 4, 2012 at 01:55 PM
What formula are you using. It seems Vlookup should work
=VLOOKUP(A2,Sheet2!A:D,3, FALSE)
=VLOOKUP(A2,Sheet2!A:D,3, FALSE)
Need2Learn
Posts
2
Registration date
Tuesday December 4, 2012
Status
Member
Last seen
December 4, 2012
Dec 4, 2012 at 03:13 PM
Dec 4, 2012 at 03:13 PM
Thanks rizvisa1. I tired that. but the problem is that I get N/A for accounts that does not exist in Sheet 2. I need those particular Spreads to keep their previous values and not "update" to N/A.
rizvisa1
Posts
4478
Registration date
Thursday January 28, 2010
Status
Contributor
Last seen
May 5, 2022
766
Dec 4, 2012 at 03:36 PM
Dec 4, 2012 at 03:36 PM
any formula cannot retain previous value in the cell as cell contains value. For your NA issue
you can try
=IF(ISERROR(VLOOKUP(A2,Sheet2!A:D,3, FALSE)), "", VLOOKUP(A2,Sheet2!A:D,3, FALSE))
you can try
=IF(ISERROR(VLOOKUP(A2,Sheet2!A:D,3, FALSE)), "", VLOOKUP(A2,Sheet2!A:D,3, FALSE))