CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Thread: crosstab issues

  1. #1
    Join Date
    Apr 2011
    Posts
    8

    crosstab issues

    Hello,

    I need to provide monthly count of opened and closed issues along with a count of issues dispatched to resolution queue.

    I am able to add the date field and group by month in the column section fine.

    The problem is that when I add more than one field in the row section, it does not display right.

    So that the rows are labeled correctly, I have created formulas where:

    Formula - Opened = Date Created
    Formula - Closed = Date Closed
    Formula Dispatched = dispatch table can have multiple dispatches, I am only interested the "dispatch for closure" and I think I can work on that formula with max date etc.

    How do I display the following:


    Jan 2012 Feb 2012 and so on

    Opened 10 20
    Dispatched 8 15
    Closed 6 12

    In the Summary section, I just want to pull the 3 fields and do a distinct count.

    My crosstab can only accept either one of the fields in the rows.

    What am I doing wrong.

  2. #2
    Join Date
    Sep 2006
    Posts
    635

    Re: crosstab issues

    could you show us as your report is designed?

  3. #3
    Join Date
    Apr 2011
    Posts
    8

    Re: crosstab issues

    Thanks for your response. This is on hold for now but when it is resuscitated, I will figure out a way to include the report and code.
    Thanks,
    Pam

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured