I have tried every suggestion I've found, I've used AI, and even tried things I knew wouldn't work to get this stupid formula to work.
These are the column names in the target sheet. The data type is number/text, except in the date columns, and those are date types.
These are the column names from the two source sheets. The data type is number/text, except in the date column, and that is a date type.
1
2
I want the JournalID from the source sheet 1 to populate in the Journal ID in the target sheet.
Most of the formulas give me anything from #INVALID VALUE to #INVALID DATA TYPE. I have tried index/collect, if statements, a combination of if and index/collect, but the only formula that partically works is
=IF(CONTAINS(PersonID1, {JournalLineDetails_UniqueID}), "Yes", ""), which only half of the criteria
During troubleshooting, I broke up the two pieces, trying to identify the issue, and found
=IF(CONTAINS({JournalLineDetails_JournalID}, {JournalInformation_ID}), "Yes", ""); everytime and in every formula, when I use the {JournalLineDetails_JournalID} reference, I get the #INVALID DATA TYPE. This reference originally pointed to the column JournalID in the source sheet, which is the primary. I created the JournalIDHelper using the formula =JournalID@row and updated the reference to pull from that column, but that didn't work either.
So, the criteria:
If the target_PersonID = the id in source1_UniqueIdentifier AND source1_JournalID = Journal ID in source 2 AND source2_Journal ID = the id in source1_UniqueIdentifier.
Output source1 journalid
I can't send the sheets due to FERPA restrictions; however, the numbers are
journal id = 10 letter/numeric characters
PersonID = 8 numeric characters
UniqueIdentifier = journal id_###_person id
I sure hope someone can help. I've been working on this project for two weeks, and I'm not even close to finishing and my deadline is rapidly approaching.
Thanks - Angelaq