+ Reply to Thread
Results 1 to 10 of 10

pounds and pennies

  1. #1
    Registered User
    Join Date
    03-26-2014
    Location
    uk
    MS-Off Ver
    Excel 2007
    Posts
    4

    pounds and pennies

    BIG HELP PLEASE...

    hi everyone

    After a searching for help on formulas, I came across this site and searched here but still not what answer am looking for.
    I hope maybe someone can give me instructions.....

    right,I've just create a spread sheet and I've put pounds in one column and pennies in one column(uk currency).now I know how to sum the totals up at each end on the bottom BUT I want the pennies to sum up to 99 then 00 and move a pound over in to the pound column....

    its an accountancy spread sheet I created, and stuck on this last bit..
    thanks

  2. #2
    Valued Forum Contributor adyteo's Avatar
    Join Date
    01-10-2013
    Location
    Calgary
    MS-Off Ver
    Excel 2010
    Posts
    540

    Re: pounds and pennies

    add the sum of pounds to the sum of pennies divided by 100

    Sum of Pounds = 512
    Sum of Pennies = 1232

    Total sum = (Sum of Pounds) + (Sum of pennies) / 100 = 512 + 1232/100 = 524.32
    Click on the star if you think I helped you

  3. #3
    Registered User
    Join Date
    03-26-2014
    Location
    uk
    MS-Off Ver
    Excel 2007
    Posts
    4

    Re: pounds and pennies

    Quote Originally Posted by adyteo View Post
    add the sum of pounds to the sum of pennies divided by 100

    Sum of Pounds = 512
    Sum of Pennies = 1232

    Total sum = (Sum of Pounds) + (Sum of pennies) / 100 = 512 + 1232/100 = 524.32
    I need to put a function that when the pennies sum in the first stage so over 99 it carries the pound in to the pound cell.
    if I understand from your reply this is 3 stages sum..i

  4. #4
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    48,506

    Re: pounds and pennies

    I cannot imagine why you would want separate columns for pounds and pence on a financial spreadsheet.

    Whatever ...

    Pounds in column A:
    Formula: copy to clipboard
    Please Login or Register  to view this content.

    Pence in column B:
    Formula: copy to clipboard
    Please Login or Register  to view this content.


    I suspect that you might get rounding errors; not sure.

    Or, you could just add them together row by row:
    Formula: copy to clipboard
    Please Login or Register  to view this content.
    and format as currency. Then just add the column.

    Or, if you just wanted the total as currency without the intermediate steps:
    Formula: copy to clipboard
    Please Login or Register  to view this content.


    Regards, TMS
    Trevor Shuttleworth - Retired Excel/VBA Consultant

    I dream of a better world where chickens can cross the road without having their motives questioned

    'Being unapologetic means never having to say you're sorry' John Cooper Clarke


  5. #5
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    48,506

    Re: pounds and pennies

    You can't "carry over" anything from one cell to another. Either the cell has a formula or it has a value; it cannot have both. So if you put 1 in cell A2 and 105 in cell B2, you cannot adjust either column to reflect the fact that the pence column is over 99.

    You can adjust the totals because that will be just formulae, as described previously.

    Regards, TMS

  6. #6
    Registered User
    Join Date
    03-26-2014
    Location
    uk
    MS-Off Ver
    Excel 2007
    Posts
    4

    Re: pounds and pennies

    I will attach the spread so you can see it
    Attached Files Attached Files

  7. #7
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    48,506

    Re: pounds and pennies

    OK, so I really can't understand why you wouldn't have a single column and key in 1.50 or 1.99 or whatever. Then your sub-totals and totals are very simple.

    Regards, TMS

  8. #8
    Registered User
    Join Date
    03-26-2014
    Location
    uk
    MS-Off Ver
    Excel 2007
    Posts
    4

    Re: pounds and pennies

    Thanks.
    I just merged the £ and P in to one cell now, ideally I would had liked separate columns but it seems its impossible to do the sum.
    thanks for the help,

  9. #9
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    48,506

    Re: pounds and pennies

    Well, I've given you formulae for the subtotals and totals. You just need to adapt them.

    Like I say, on a row you can type or you can have a formula; you can't have both. That said, you could use VBA to monitor the pennies cells and, if they exceed 99p convert it into pounds and pence ... add the pounds to the pounds column and replace the pennies.

    Seems a bit extreme but you can do it if you're prepared to go for a code solution.


    Regards, TMS

  10. #10
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: pounds and pennies

    A
    B
    C
    D
    7
    Daily Takings
    8
    Monday
    88
    2
    9
    Tuesday
    85
    52
    10
    Wednesday
    43
    99
    11
    Thursday
    98
    38
    12
    Friday
    13
    0
    13
    Saturday
    33
    44
    14
    Sunday
    70
    49
    15
    Total Takings
    432
    84

    C15: =SUM(C8:C14) + INT(SUM(D8:D14)/100)

    D15: =MOD(SUM(D8:D14), 100)

    That's a whacky way to record financial data.
    Entia non sunt multiplicanda sine necessitate

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Formula returns a value with fractions of pennies even though there are none
    By momniscient in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 02-14-2014, 07:08 PM
  2. Totals in spreadsheet off by pennies
    By nburzynski in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 01-13-2014, 04:26 PM
  3. convert stones and pounds to pounds
    By harvey704 in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 03-17-2013, 08:12 PM
  4. [SOLVED] Re: Convert decimal Pounds to Pounds-Ounces
    By Sindhiiu in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 09-24-2012, 11:37 AM
  5. Pounds (Lbs) to Stones & Pounds
    By davidcrawt in forum Excel General
    Replies: 3
    Last Post: 10-04-2010, 06:45 AM

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