+ Reply to Thread
Results 1 to 18 of 18

Auto fill consecutive row after processing from different sheet.

Hybrid View

  1. #1
    Forum Expert snb's Avatar
    Join Date
    05-09-2010
    Location
    VBA
    MS-Off Ver
    Redhat
    Posts
    5,649

    Re: Auto fill consecutive row after processing from different sheet.

    cfr. the attachment
    Attached Files Attached Files
    Last edited by snb; 01-03-2011 at 04:25 PM.



  2. #2
    Registered User
    Join Date
    12-29-2010
    Location
    Indonesia
    MS-Off Ver
    Excel 2003
    Posts
    11

    Re: Auto fill consecutive row after processing from different sheet.

    Hi snb,
    What I'm trying to make will look like the this attachment.
    So, total from "Buy" or "Sell" will be put in sequence by the date in "Cash Balance".
    Each will be separated in different row.
    Attached Files Attached Files

  3. #3
    Forum Expert snb's Avatar
    Join Date
    05-09-2010
    Location
    VBA
    MS-Off Ver
    Redhat
    Posts
    5,649

    Re: Auto fill consecutive row after processing from different sheet.

    cfr. the attachment.

    In the balance sheet all data form sell and buy will be inserted.(64 rows)
    After that you can sort this balance sheet (A1:F65) on date (menu/Data/sort).
    Attached Files Attached Files

  4. #4
    Registered User
    Join Date
    12-29-2010
    Location
    Indonesia
    MS-Off Ver
    Excel 2003
    Posts
    11

    Re: Auto fill consecutive row after processing from different sheet.

    Quote Originally Posted by snb View Post
    cfr. the attachment.

    In the balance sheet all data form sell and buy will be inserted.(64 rows)
    After that you can sort this balance sheet (A1:F65) on date (menu/Data/sort).
    That won't work, snb. After I sort it out, the datas were mixed with each other.
    I need to keep every total from each dates (even the same date) to be in different rows.

  5. #5
    Forum Expert snb's Avatar
    Join Date
    05-09-2010
    Location
    VBA
    MS-Off Ver
    Redhat
    Posts
    5,649

    Re: Auto fill consecutive row after processing from different sheet.

    That will definitely work if you sort correctly:
    select A1:D63, menu/Data/sort

    or using a macro

    Sub sort_snb()
      Sheets("Cash Balance").Range("A1:D63").Sort Range("A2"), , , , , , , xlYes
    End Sub

  6. #6
    Registered User
    Join Date
    12-29-2010
    Location
    Indonesia
    MS-Off Ver
    Excel 2003
    Posts
    11

    Re: Auto fill consecutive row after processing from different sheet.

    Quote Originally Posted by snb View Post
    That will definitely work if you sort correctly:
    select A1:D63, menu/Data/sort

    or using a macro

    Sub sort_snb()
      Sheets("Cash Balance").Range("A1:D63").Sort Range("A2"), , , , , , , xlYes
    End Sub
    Hi snb,
    I've change the formula after your ideas, thanks again. I think there is no other choice than to make it separate into double tables like the one you suggest. I have 1 last question, how do we fix the #VALUE! error in E37:E63 ?
    Attached Files Attached Files
    Last edited by ganekon; 01-04-2011 at 11:04 PM.

  7. #7
    Registered User
    Join Date
    12-29-2010
    Location
    Indonesia
    MS-Off Ver
    Excel 2003
    Posts
    11

    Re: Auto fill consecutive row after processing from different sheet.

    nevermind, i've fix it. thanks!

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

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

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1