Notifications
Clear all
Topic starter
Anyone been able to run a crystal report on future flags per desktop?
Posted : January 15, 2021 4:12 am
If you mean flags with a due date in the future, the following query would return them.
Could add joins as needed to pull in the User info you want (if any).
Select *
From FLAG
Where DUE > GETDATE()
Posted : May 12, 2021 5:43 am