Feb 21 2023 09:30 AM - edited Feb 21 2023 11:37 AM
Hello,
I have an inspector report that I am trying to pull data from certain fields based on a Ring #. The inspector will fill out the main report page and then the selected fields will record on another tab. The way I can see to trigger this is to go by the Ring #.
The highlighted cells above, I need to pull that info to another sheet buy the Ring #
I think it might be possible to use the IF command, so that when the Ring # is typed in, whatever is input into the highlighted fields get recorded on the other tab. Is this at all possible?
I am not very savvy with excel... I have a sample workbook if anyone can help me
Thanks
Feb 21 2023 10:40 AM
=IFERROR(INDEX($C$2:$C$18,MATCH(1,($A$2:$A$18=F2)*($B$2:$B$18=G2),0)),"")
Is this similar to what you are looking for? Enter the formula with ctrl+shift+enter if you don't work with Office 365 or Excel 2021.
Feb 21 2023 11:40 AM
Feb 21 2023 12:27 PM
Feb 21 2023 12:44 PM
Feb 21 2023 01:52 PM
Feb 21 2023 04:32 PM
Feb 21 2023 05:35 PM
I have been playing around with this and actually for one field working on the compiled tab by using this formula - =IF('CoverPage'!$C$51=[@Ring],'CoverPage'!MuckWeight,"")
But the issue is that when the ring number on the cover page changes, it just disappears from the compiled tab. how can I get these to stay as a record? See my updated file attached please. Also, thank you both so much for the help with this!
Feb 22 2023 02:53 PM
Feb 23 2023 03:33 AM
SolutionHello,
instead of an IF command i've tried this formula
=IFERROR(INDEX(CoverPage!$I$51:$I$53,MATCH([@Ring],CoverPage!$C$51:$C$53,0)),"")
in cell B3 of sheet "Compiled Info" and it seems to return the expected result. The formula is spilled down within the dynamic table. However because of the merged cells in sheet "CoverPage" i find it difficult to help with this task.
Mar 01 2023 06:54 AM
Mar 01 2023 07:21 AM
Mar 02 2023 09:09 AM
I would make a copy of the combined tab (sheet "Compiled Info") and then copy and paste only the values in the copied sheet before the report is edited by the next shift. This way the formulas remain in the combined tab and the data in the copy of the combined sheet doesn't change.
The only other possible solution i can imagine is as shown in a simplified example in the attached file. Let's say the ring # are entered in range A2:A5 and the additional info in ranges B2:B5 and C2:C5. You can try what happens if you enter e.g. ring # 17 in cell A2 and additional info in B2 and C2. This could return the expected result but would be difficult to do with VBA. In addition if a ring # is entered twice along with it's additional info by mistake the original data would be overwritten.
Mar 10 2023 06:27 AM
Mar 12 2023 10:32 AM
Unfortunately i can't help you with this. It's a different task that probably requires another approach to fill the data in the other direction. Maybe you want to start a new discussion and an expert of the community can help you with this.
Mar 12 2023 08:11 PM
The result that I really need is that when they delete off of the cover page, it is still recorded on the combined tab.
Do you mean that the CoverPage is the entry template form and you can input on CoverPage then the save data from CoverPage to shift info and clean relative input data in CoverPage ?
Feb 23 2023 03:33 AM
SolutionHello,
instead of an IF command i've tried this formula
=IFERROR(INDEX(CoverPage!$I$51:$I$53,MATCH([@Ring],CoverPage!$C$51:$C$53,0)),"")
in cell B3 of sheet "Compiled Info" and it seems to return the expected result. The formula is spilled down within the dynamic table. However because of the merged cells in sheet "CoverPage" i find it difficult to help with this task.