Right now I'm trying to experiment with pulling information from one sheet to another based on if the creation day and submitter match, and I'm struggling to get it to work. First I was getting an "INVALID DATA TYPE" error, so I tried starting from scratch but now I'm getting an "INCORRECT ARGUMENT" error, so I guess progress?? Here's what I have so far:
=IF(AND(CONTAINS(DAY(Created@row), DAY({Master Document Request Submittal Date})), CONTAINS([Created By]@row, {Master Document Request Submitted By}), {Master Document Request ID}, ""))
The logic is that if the current sheet Created Day matches the Master Doc row created Day AND the current sheet submitter matches the Master Doc row submitter, it'll pull the ID # from the Master Doc.