CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Apr 2010
    Posts
    1

    Basic Report Help!

    So putting together a report that shows how often items are ordered in a stock room at a hospital.

    Thing is though, if the item hasn't been ordered, crystal doesn't display the item.

    I have a table that contains all the information for the stock room (table.itemloc), and then I have a table that contains all ordering info (table.reqline).

    When I bring over the reqline fields (i.e. creation date, quantity, etc) it only displays the fields that have matching criteria.

    I simnply want to make a report that says "this is a fast moving item" (which I can already show), and "this item hasn't been ordered at all.."

    Thanks

  2. #2
    Join Date
    Apr 2008
    Location
    Pittsburgh
    Posts
    103

    Re: Basic Report Help!

    Did you try changing the table join from an Inner Join to either a Left Outter or Right Outter Join?

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