Forum Discussion
Collier410
Oct 03, 2024Copper Contributor
Project Management Access Fix?
Hi I have just begun using the template by Microsoft access that is for project management. I have posted below a screen shot of what I'm encountering. My access is showing a completed job under my p...
George_Hepworth
Oct 03, 2024Silver Contributor
In the query that provides records for this report, add a where clause to restrict records to those projects not in the completed status. This could be one of two possible variations, depending on the tables and fields.
WHERE ProjectStatus <> "Completed"
or
WHERE ProjectStatus <> 1, where 1 is the Primary Key for the ProjectStatus "Completed" in the ProjectStatus table.
Unfortunately, I don't see a table that would be "ProjectStatus", so I'm afraid that the statuses are a value list which includes "Completed". That would lean towards the first option.
Clarity depends on greater detail about the tables.