I'm trying to identify conflicting dates and locations for assets. The assets are entered into the sheet as new rows from a form. There are two columns: [Scheduled Arrival Date] and [Arrival Wet Slip]. I'm trying to use INDEX MATCH to identify when an asset's [Scheduled Arrival Date] and [Arrival Wet Slip] conflict with another asset so our team can reschedule the conflict.
Here is the formula I have in a helper column: =INDEX([Scheduled Arrival Date]:[Arrival Wet Slip],MATCH([Scheduled Arrival Date]@row&[Arrival Wet Slip]@row,[Scheduled Arrival Date]:[Scheduled Arrival Date]&[Arrival Wet Slip]:[Arrival Wet Slip],0))
Am I misusing INDEX MATCH, making a formula error, or is there a much simpler way of doing this?