Hi, I have 2 issues
1. I have a syntax error in this instruction and can't find what's wrong, I checked and rechecked it and counted if there was a parenthesis problem but I found 4 "(" and 4 ")" so eaach parenthesis symbol has it's other part.
2. Im building a query to test and validate that there is no collision in each of the appointments, I saw it on internet and decided to try it, since I'm building a query to validate a tables data I'm guessing it's supposed to be like an append query? How does it work?
This is the logic:
1. I have a syntax error in this instruction and can't find what's wrong, I checked and rechecked it and counted if there was a parenthesis problem but I found 4 "(" and 4 ")" so eaach parenthesis symbol has it's other part.
2. Im building a query to test and validate that there is no collision in each of the appointments, I saw it on internet and decided to try it, since I'm building a query to validate a tables data I'm guessing it's supposed to be like an append query? How does it work?
This is the logic:
Code:
NoClash: Nz(([tblAppointments_1].[AppointTime]>=[tblAppointments].[AppointEndTime]) Or ([tblAppointments_1].[AppointEndTime]<=[tblAppointments].[AppointTime]) Or ([tblAppointments].[AppID]<>[tblAppointments_1].[AppID]),False)
Comment