1 2 3 4
| SELECT T_RendezVous.NumAction, T_RendezVous.HeureDebut, T_RendezVous.HeureFin, RqContacts.Contact, T_RendezVous.EtatAction, T_RendezVous.LieuAction, T_RendezVous.HoraireDebut, [Types actions].TypeAction, T_RendezVous.IdIntervenant, IIf([horairedebut]>Now(),DateDiff("d",Now(),[horairedebut]) & " j. " & " " & DateDiff("h",Now(),[horairedebut]) & " h. ","Dépassé") AS Restant, DateValue([horairedebut]) AS Jour
FROM [Types actions] INNER JOIN (T_RendezVous INNER JOIN RqContacts ON T_RendezVous.NumContact = RqContacts.NumContact) ON [Types actions].NumTypeAction = T_RendezVous.TypeAction
WHERE (((T_RendezVous.IdIntervenant)=[Formulaires]![Agenda semaine]![CboChoixIntervenant]) AND ((DateValue([horairedebut]))=#11/3/2015#))
ORDER BY T_RendezVous.HoraireDebut DESC; |
Partager