Hello guys
I have a table named (supervisor data)
and table named
(appointments)
After entering the appointments for supervisors working on Sundays, for example
I want to make a(Slices) that shows me the names of the supervisor who do not have appointments on this day
note :
I used this expression to find out which supervisor have appointments for the current day
Assuming your comparisons are correctly matched by data type. the expression you have supplied seems it should work to extract the correct rows from the table. What is the issue?
There are a couple things to check:
How is the column [supervisor] defined in the “appointments” table. Does it also have the supervisor name?
Is the [date] column in “appointments” table defined as type of Date? If it is DateTime, wrap it in the DATE() function to get just the date portion.