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
- 64.5K Get Help
- 430 Global Discussions
- 136 Industry Talk
- 465 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 146 Just for fun
- 63 Community Job Board
- 466 Show & Tell
- 32 Member Spotlight
- 2 SmartStories
- 301 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!