create one day book in crystal reports FROM access data base table

Last post 07-07-2009 3:01 AM by jeyaseelan@ajsquare.net. 1 replies.

Sort Posts:

  • create one day book in crystal reports FROM access data base table

    07-06-2009, 8:16 AM
    • Member
      6 point Member
    • CrystalRpt
    • Member since 06-24-2009, 11:18 AM
    • Posts 13

    I have an access data base table with fields

    Date Accountname Debitamount Creditamount

    I want to create one day book


    Date               Accountname              Debit              Credit


    if date same that field shall not be repeated  as everybody know

    When a new date comes creditamount-debitamount shall be shown as opening balance


    any idea?




  • Re: create one day book in crystal reports FROM access data base table

    07-07-2009, 3:01 AM

    CrystalRpt:

    I have an access data base table with fields

    Date Accountname Debitamount Creditamount

    I want to create one day book


    Date               Accountname              Debit              Credit


    if date same that field shall not be repeated  as everybody know

    When a new date comes creditamount-debitamount shall be shown as opening balance


    any idea?




    if date same that field shall not be repeated in the sense if the records comes like this

    Date

    19/12/2009

    19/12/2009

    then it should show only one time right?

    If my understand is correct then you can write the query like this

    select distinct [date], AccountName, Debit, Credit from dbo.table1 where condition;

     

     

     

    Any doubts please feel free to ask me.

    If this post is answer of your question then don't forgot to Click Mark As Answer.

    Thanks & Regards,
    J.Jeyaseelan
Page 1 of 1 (2 items)