+ Reply to Thread
Results 1 to 5 of 5

Splitting Data

Hybrid View

  1. #1
    jez123456
    Guest

    Splitting Data

    Hi, I have an excel spreadsheet with 4000 rows. Sample data from the Amount
    column is as follows:

    Amount
    £0.00
    £400.00
    -£20.00
    -£20.00
    £100.00
    -£50.00
    -£8.99
    -£44.57
    -£30.00
    -£9.39
    -£20.00
    £100.00

    Is there a quick way to seperate this data into positve and negative amounts
    to give:

    Credit Debit
    £0.00
    £400.00
    -£20.00
    -£20.00
    £100.00
    -£50.00
    -£8.99
    -£44.57
    -£30.00
    -£9.39
    -£20.00
    £100.00

    Many Thanks


  2. #2
    Andy Brown
    Guest

    Re: Splitting Data

    "jez123456" <jez123456@discussions.microsoft.com> wrote in message
    news:5374575C-BE0D-4B61-A278-C5D06558F306@microsoft.com...
    > Is there a quick way to seperate this data into positve and negative

    amounts

    How quick? In the first column to the right, use

    =IF($A1>=0,$A1,"")

    & copy down. In the second column to the right,

    =IF($B1="",$A1,"")

    & copy down. Select & copy the 2 columns, then Edit -- Paste Special --
    Values.

    Rgds,
    Andy



  3. #3
    David Jessop
    Guest

    RE: Splitting Data

    Hi,

    Assuming your data is in column A, then just put into column B
    =IF (A1>=0,A1,"")
    and in column C
    =IF(A1<0,A1,"")

    Or put whatever else you want as the third parameter.

    HTH,

    David Jessop

    "jez123456" wrote:

    > Hi, I have an excel spreadsheet with 4000 rows. Sample data from the Amount
    > column is as follows:
    >
    > Amount
    > £0.00
    > £400.00
    > -£20.00
    > -£20.00
    > £100.00
    > -£50.00
    > -£8.99
    > -£44.57
    > -£30.00
    > -£9.39
    > -£20.00
    > £100.00
    >
    > Is there a quick way to seperate this data into positve and negative amounts
    > to give:
    >
    > Credit Debit
    > £0.00
    > £400.00
    > -£20.00
    > -£20.00
    > £100.00
    > -£50.00
    > -£8.99
    > -£44.57
    > -£30.00
    > -£9.39
    > -£20.00
    > £100.00
    >
    > Many Thanks
    >


  4. #4
    jez123456
    Guest

    RE: Splitting Data

    Many thanks, that works great. How do I now get a running Balance in the next
    column? I.E.

    Credit Debit Balance
    £0.00 £0.00
    £400.00 £400.00
    -£20.00 £380.00
    -£20.00 £360.00
    £100.00 £460.00
    -£50.00 £410.00




    "David Jessop" wrote:

    > Hi,
    >
    > Assuming your data is in column A, then just put into column B
    > =IF (A1>=0,A1,"")
    > and in column C
    > =IF(A1<0,A1,"")
    >
    > Or put whatever else you want as the third parameter.
    >
    > HTH,
    >
    > David Jessop
    >
    > "jez123456" wrote:
    >
    > > Hi, I have an excel spreadsheet with 4000 rows. Sample data from the Amount
    > > column is as follows:
    > >
    > > Amount
    > > £0.00
    > > £400.00
    > > -£20.00
    > > -£20.00
    > > £100.00
    > > -£50.00
    > > -£8.99
    > > -£44.57
    > > -£30.00
    > > -£9.39
    > > -£20.00
    > > £100.00
    > >
    > > Is there a quick way to seperate this data into positve and negative amounts
    > > to give:
    > >
    > > Credit Debit
    > > £0.00
    > > £400.00
    > > -£20.00
    > > -£20.00
    > > £100.00
    > > -£50.00
    > > -£8.99
    > > -£44.57
    > > -£30.00
    > > -£9.39
    > > -£20.00
    > > £100.00
    > >
    > > Many Thanks
    > >


  5. #5
    Andy Brown
    Guest

    Re: Splitting Data

    "jez123456" <jez123456@discussions.microsoft.com> wrote in message
    news:AB236E13-97F0-4022-B4BC-D23DACC7F456@microsoft.com...
    > Many thanks, that works great. How do I now get a running Balance in the

    next
    > column? I.E.


    Assuming a start figure in C2, use

    =C2+SUM(A3:B3)

    in C3 & copy down.

    Rgds,
    Andy



+ 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