If this is in the wrong place are I apologize. I just have had great success with this forum and figured I would get an answer here. I am using DW and need to finish this query in a recordset. I only want to disply items with a date that is = or > than the current date. I have tried > Date() or Date() which works in Access but does not seem to work in this case. Here is the statement.
SELECT PA_SCHED.ACT_CPNT_ID, PA_SCH_SEG.START_DTE
FROM PLATEAU.PA_SCHED PA_SCHED, PLATEAU.PA_SCH_SEG PA_SCH_SEG
WHERE PA_SCHED.SCHD_ID = PA_SCH_SEG.SCHD_ID AND PA_SCHED.ACT_CPNT_ID = 'MMColParam' AND START_DTE
Thanks in advance for the help.
Brian
SELECT PA_SCHED.ACT_CPNT_ID, PA_SCH_SEG.START_DTE
FROM PLATEAU.PA_SCHED PA_SCHED, PLATEAU.PA_SCH_SEG PA_SCH_SEG
WHERE PA_SCHED.SCHD_ID = PA_SCH_SEG.SCHD_ID AND PA_SCHED.ACT_CPNT_ID = 'MMColParam' AND START_DTE
Thanks in advance for the help.
Brian