Pulling Data from Second Sheet
Two Sheets:
I have one sheet labeled "Permits" and one sheets labeled "Project Tracker", Each sheet has a Column Labeled "Job #" and "Permit #".
What I'm looking for is if Job # match on both Sheets in column, Permit number column on Permits sheet is copied to project tracker sheet column.
Best Answer
-
Try something like this...
=INDEX({Other Sheet Permit # Column}, MATCH([Job Number]@row, {Other Sheet Job Number Column}, 0))
Answers
-
Try something like this...
=INDEX({Other Sheet Permit # Column}, MATCH([Job Number]@row, {Other Sheet Job Number Column}, 0))
-
Paul,
Thank you so much this worked perfectly, But questions. Lines that have no data to match are showing "NO MATCH", How can i change that to say " Pending"
-
You would want an IFERROR like so...
=IFERROR(INDEX({Other Sheet Permit # Column}, MATCH([Job Number]@row, {Other Sheet Job Number Column}, 0)), "Pending")
-
Paul,
Again Thank you for all your assistance. This worked out perfectly for what I needed to accomplish.
-
Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.8K Get Help
- 434 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!