Hello,
Please help me with my problem, this is the simple select statement I have for target bid date:
ProjectOverview.[Target Event Date - Date] AS [Target Bid Date]
now, I want to ask how can I select the latest target event date and if value is null, put "no date" caption
i tried doing this:
isnull MAX(ProjectOverview.[Target Event Date - Date],'INACTIVE') AS [Target Bid Date]
but it says:
Incorrect syntax near 'ProjectOverview'.
String cannot be converted to date
Thank you very much and I am hoping someone can help me.