Problem grouping in report

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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.
 
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

Similar Threads

Sum Group By 2
Access Sorting and grouping using multiple tables 0
Sort order in report 2
Chart in Grouped Report in Access 2007 2
Pivot Table into Report 1
Grand Total in a report 4
Report Group Count? 2
People in Groups 8

Back
Top