+ Reply to Thread
Results 1 to 3 of 3

Generate Sheet based on other sheets

  1. #1
    Registered User
    Join Date
    11-09-2011
    Location
    Cali
    MS-Off Ver
    Excel 2010
    Posts
    9

    Generate Sheet based on other sheets

    So I have 3 Sheets: Entry, Location 1, Location 2

    Location 1 Columns: Date, Description, Amount
    Location 2 Columns: Date, Description, Amount
    Entry: I want new lines to populate every time I enter new information into the other sheets. So if I enter in sheet 'location 1': A1=11/1/12; B1=Visa; C1=$500
    I want sheet 'Entry' to create two lines


    TRNS GENERAL JOURNAL 11/1/2012 Bank Location1 500 Visa
    SPL GENERAL JOURNAL 11/1/2012 Gross Sales Location 1 -500 Visa

    Can Anyone Help?

  2. #2
    Valued Forum Contributor
    Join Date
    09-10-2012
    Location
    Los Angeles, CA
    MS-Off Ver
    Excel 2010
    Posts
    929

    Re: Generate Sheet based on other sheets

    Try these 2 formulas...

    ="TRNS GENERAL JOURNAL "&TEXT('Location 1'!$A$1,"m/d/yyyy")&" Bank "&MID(CELL("address",'Location 1'!$A$1),FIND("]",CELL("address",'Location 1'!$A$1))+1,LEN(CELL("address",'Location 1'!$A$1))-FIND("]",CELL("address",'Location 1'!$A$1))-6)&" "&TEXT('Location 1'!$C$1,"0")&" "&'Location 1'!$B$1

    ="SPL GENERAL JOURNAL "&TEXT('Location 1'!$A$1,"m/d/yyyy")&" Gross Sales "&MID(CELL("address",'Location 1'!$A$1),FIND("]",CELL("address",'Location 1'!$A$1))+1,LEN(CELL("address",'Location 1'!$A$1))-FIND("]",CELL("address",'Location 1'!$A$1))-6)&" -"&TEXT('Location 1'!$C$1,"0")&" "&'Location 1'!$B$1

  3. #3
    Registered User
    Join Date
    11-12-2012
    Location
    Kaunas
    MS-Off Ver
    Excel 2010
    Posts
    6

    Re: Generate Sheet based on other sheets

    place formula to these created two lines. Something like this:
    =concatenate("TRNS GENERAL JOURNAL "; a1; "bank location1"; c1; " "; b1)
    =concatenate("SPL GENERAL JOURNAL "; a1; "Gross Sales Location 1 -"; c1; " "; b1)

+ 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