I'm trying to build a report that shows credit loads for future semesters for students. The data is arranged something like this:
Record ID|Semester |Grade|Attempted Credits
(id) |2018 Fall| |3.0
Some students have manually changed credit loads, so they have grades "VC" (Variable Credit). The formula field I'm summing in the report is just:
If [Semester] = "2018 Fall" Then [Attempted Credits] Else 0
But then in the report, it only sums records where the Grade is not blank. I've tried things to isolate the blank grades and add them in ([Grade]="", IsNull{[Grade]}), but CR still doesn't seem to consider them. I've also checked the MDB file that it's based on to validate that the data is indeed there. It's just striking me as weird, because the [Grade] field isn't a key field, linked field, or referenced in any of the formulas or filters. It feels like if it disregarded records of people because their middle initial is blank.