Tag questions

If you have questions or if you want to share your opinion about Aware IM post your message on this forum
Post Reply
tkilshaw
Posts: 170
Joined: Thu Jan 19, 2006 11:33 pm
Location: Western Canada
Contact:

Tag questions

Post by tkilshaw »

What I'm working towards is a way to present a task completion, or non-completion summary for all salespersons. So the query on this report is:

FIND RegularUser WHERE RegularUser.AccessLevel='SalesPerson' AND RegularUser.Active='Yes' ORDER BY RegularUser.LoginName.

The following rule in a tag works:

COUNT Task WHERE (Task IN RegularUser.Tasks)

But this one does not. I get a "Syntax error at token "AND" error.

COUNT Task WHERE (Task IN RegularUser.Tasks) AND (Task.StartTime < CURRENT_DATE)

How can I do what I need?

thanks,

Terry
aware_support
Posts: 7525
Joined: Sun Apr 24, 2005 12:36 am
Contact:

Post by aware_support »

Try this rule:

COUNT Task WHERE (Task IN RegularUser.Tasks AND Task.StartTime < CURRENT_DATE)
Aware IM Support Team
Post Reply