R
Robin Chapple
I have a report where I need to display various levels of member
participation.
Originally I displayed the level including the non active members:
="18 =" & Format((18/(Count([surname]))*100),"#.##") & "%"
which produced the correct result for those conditions.
I have now introduced a calculated field called [Status] where non
active members have an entry. Active members have a blank [Status]
field.
Now that I have the [Status] field I need to count the fields that are
empty to determine active members. This produces a figure still based
on the complete membership. I assume that this is not the way to count
blank fields:
="18 =" & Format((18/(Count([status] Is Null))*100),"#.##") & "%"
Thanks,
Robin Chapple
participation.
Originally I displayed the level including the non active members:
="18 =" & Format((18/(Count([surname]))*100),"#.##") & "%"
which produced the correct result for those conditions.
I have now introduced a calculated field called [Status] where non
active members have an entry. Active members have a blank [Status]
field.
Now that I have the [Status] field I need to count the fields that are
empty to determine active members. This produces a figure still based
on the complete membership. I assume that this is not the way to count
blank fields:
="18 =" & Format((18/(Count([status] Is Null))*100),"#.##") & "%"
Thanks,
Robin Chapple