I think that you just need to change the >= and the <= to > and <. Instead of
NoClash: ([tblEvent_1].[Start] >= [tblEvent].[End]) Or
([tblEvent_1].[End] <= [tblEvent].[Start]) Or
([tblEvent].[LocationID] <> [tblEvent_1].[LocationID]) Or
([tblEvent].[EventID] = [tblEvent_1].[EventID])
use
NoClash: ([tblEvent_1].[Start] > [tblEvent].[End]) Or
([tblEvent_1].[End] < [tblEvent].[Start]) Or
([tblEvent].[LocationID] <> [tblEvent_1].[LocationID]) Or
([tblEvent].[EventID] = [tblEvent_1].[EventID])
Matthias Kläy, Kläy Computing AG