locked
report form with conditional grouping doesn't work RRS feed

  • Question

  • I created a report (after the user answer certain questions). One of those question was regarding grouping.

    The report (which originally didn't have grouping) now will have a conditional grouping

    IIF(LEFT(lc_group,1)="C", "Custno", IIF(LEFT(lc_group,1)="L", "loctid+custno", ""))

    However, even when the index is the right one, and the groop header starts correctly, the groups end at the end of the report and no at the end of each group.

    What am I doing wrong r am I missing any step?

     

    Wednesday, March 23, 2011 2:40 AM

Answers

  • Both "Custno" and "loctid+custno" are string literal constants and they do not change during the report. You have to remove double quotes.
    • Marked as answer by Benny Gabel Thursday, March 24, 2011 2:31 PM
    Wednesday, March 23, 2011 11:17 AM

All replies

  • Both "Custno" and "loctid+custno" are string literal constants and they do not change during the report. You have to remove double quotes.
    • Marked as answer by Benny Gabel Thursday, March 24, 2011 2:31 PM
    Wednesday, March 23, 2011 11:17 AM
  • Thank you
    Thursday, March 24, 2011 2:53 PM