Match and Put row values
I have 2 sheets.
Sheet 1 and Sheet 2. Both have ID columns and column called vertical.
Need a formula that, if ID at the row from sheet 2 matches with ID in sheet 1 - then in the vertical column in sheet 2, I want to put the value from vertical column in Sheet 1.
Best Answer
-
Hi @keesuri25
in Sheet 2 vertical column use this formula
=iferror(index({Sheet1 Vertical},match([Sheet 2ID]@row,{Sheet 1 ID},0)),"")
Match will return a index of the ID position equal to Sheet2 ID located in Sheet 1 ID, or #NO MATCH error
Index will return the value at the position given by the match function from the sheet1 vertical column
Iferror catch the #NO MATCH error and output "" instead
Answers
-
Hi @keesuri25
in Sheet 2 vertical column use this formula
=iferror(index({Sheet1 Vertical},match([Sheet 2ID]@row,{Sheet 1 ID},0)),"")
Match will return a index of the ID position equal to Sheet2 ID located in Sheet 1 ID, or #NO MATCH error
Index will return the value at the position given by the match function from the sheet1 vertical column
Iferror catch the #NO MATCH error and output "" instead
-
That worked perfectly... Thank you so much..
-
=iferror(index({Sheet1 Vertical},match([Sheet 2ID]@row,{Sheet 1 ID},0)),"")
In the above formula, instead of output "" for NO MATCH, how can i output @row value from another column ?
Something like
=iferror(index({Sheet1 Vertical},match([Sheet 2ID]@row,{Sheet 1 ID},0)),[vertical:old]@row)
-
@keesuri25 Absolutly!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.2K Get Help
- 452 Global Discussions
- 155 Industry Talk
- 505 Announcements
- 5.4K Ideas & Feature Requests
- 85 Brandfolder
- 156 Just for fun
- 81 Community Job Board
- 514 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 308 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!