Problem grouping in report

  • Thread starter AccessDatabaseUserInNeedOfHelp2005_01_07
  • Start date
A

AccessDatabaseUserInNeedOfHelp2005_01_07

Basically I have 3 groupings
ex:
Group 1 field
Group 2 Field
Group 3 Field

Group 1 and Group 3 have null values in the entire columns of result set
being used to generate the report. This is causing the report to show no
records/data in the detail section of the report and the word 'Error" in all
grouping headers.

Is there any programmatic way to fix this or by changing the report specs
without fixing the data so these two columns are populated?

Thanks.

PS Any prompt answer will be deeply appreciated.
 
K

KARL DEWEY

Use an IIF statement like this --
IIF([YourField] Is Null, "", [YourField])

Using two double quotes gives it a zero lenght entry instead of a null.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top