ThePixelMines
Technical User
This has been driving me crazy. It seems so simple.
I've got a class roster (report) that totals tuition, number of students per class and total students. I want a total of families. Right now, I have a table for families with a one-to-many relationship to a student table.
The result I'm looking for would be similar to that of
but that's not working in the report. I get a warning that I have an operand without an operator.
What am I missing here?
Check it, Fool!
I've got a class roster (report) that totals tuition, number of students per class and total students. I want a total of families. Right now, I have a table for families with a one-to-many relationship to a student table.
The result I'm looking for would be similar to that of
Code:
COUNT(DISTINCT [family_ID])
What am I missing here?
Check it, Fool!