Results 1 to 2 of 2

Thread: Can I ...... Should I... SQL Statement in Control Source of a Report

  1. #1
    Join Date
    Jan 2006
    Posts
    9

    Can I ...... Should I... SQL Statement in Control Source of a Report

    I have a report that is like a spreadsheet...
    See screenshot at: http://www.lnrconsulting.com/temp/ResourceRpt.jpg

    (I know it looks like Excel... but has to be like this...)

    Each cell has a diff equation based upon the data in the tables... (I didnt want to have to build a seperate query view for each cell so I fifgured I could just put a SQL statement in the control source but it keeps erroring on me.... Can I not do this? What options do I have?
    (I have tried alot of syntax options....)

    Here is one of the SQL Statements I tried to use.

    =SELECT Count([tbl_Person.personID]) FROM tbl_Person WHERE (((Now() Between [tbl_Person.StartDate] And [tbl_Person.EndDate]) And [tbl_Person.GroupType]="GWHIS"));

    Thanks in advance for your input.

    Ron

  2. #2
    Join Date
    Jan 2006
    Posts
    9
    for others to learn from....

    This is what I was looking for... and found at tek-tips.com

    =DCount("*","tbl_Person","Now() Between StartDate And EndDate And GroupType='GWHIS'")

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •