+ Reply to Thread
Results 1 to 3 of 3

How to retain the three letter currency information when doing math formulas?

  1. #1
    Registered User
    Join Date
    06-28-2008
    Location
    Neverwhere
    Posts
    5

    How to retain the three letter currency information when doing math formulas?

    Hi,

    I have an excel sheet with a few problems.

    I have yearly maintenance fees that are paid in the local currency. This is marked with the international signs on the right.

    In some cases we also charge a once a month fee, which is accrued over the course of the year. Others are just paid at the beginning of the year.

    The thing is, for monthly payments I need to keep on the right hand side the three letter currency information.

    For example in this case: 2,250 USD over the course of six months is 13,500.00. At the moment I use this kind of formula:
    =IF(ISNUMBER(J3),J3,VALUE(LEFT(J3,SEARCH(" ",J3)-1))) * 6

    Now I need to retain the USD marker because not all currencies convert from USD to EUR the same way, so I cannot use $ (AT ALL).


    Maintenance fees, per annum (Orig) Monthly installments Yearly maintenance fees Maintenance fees, per annum (EUR)
    2,250 USD 13,500.00 USD 11,880.00
    14,000 AUD NA 9,660.00
    14,000 AUD NA 9,660.00

  2. #2
    Forum Contributor
    Join Date
    03-17-2005
    Location
    Canterbury, Kent
    MS-Off Ver
    2003, 2010
    Posts
    285

    Re: How to retain the three letter currency information when doing math formulas?

    Is this any help?

    =IF(ISNUMBER(J3),J3,VALUE(LEFT(J3,SEARCH(" ",J3)-1))) * 6&" "&RIGHT(J3,3)

    Windy

  3. #3
    Forum Guru AlKey's Avatar
    Join Date
    07-20-2009
    Location
    Lakeland, FL USA
    MS-Off Ver
    Microsoft Office 2010/ Office 365
    Posts
    8,903

    Re: How to retain the three letter currency information when doing math formulas?

    Or maybe a short one

    There is no need for VALUE function since multiplication will do it anyway. There is also no use for ISNUMBER either.

    =LEFT(J3,FIND(" ",J3))*6&" "&RIGHT(J3,3)

    You may also would like to add an error trapping to your formula:

    If you use Excel verision 2007 and up you can use IFERROR function

    =IFERROR(LEFT(I3,FIND(" ",I3))*6&" "&RIGHT(I3,3),"NA")

    and if you still using Excel 2003 or lover

    =IF(ISERROR(LEFT(J3,FIND(" ",J3))*6&" "&RIGHT(J3,3)),"NA",LEFT(J3,FIND(" ",J3))*6&" "&RIGHT(J3,3))
    If you like my answer please click on * Add Reputation
    Don't forget to mark threads as "Solved" if your problem has been resolved

    "Nothing is so firmly believed as what we least know."
    --Michel de Montaigne

+ 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. Replies: 5
    Last Post: 12-10-2014, 07:03 PM
  2. [SOLVED] Retain information in 3 rows and sort by column
    By elopez72 in forum Excel General
    Replies: 10
    Last Post: 08-05-2013, 06:30 PM
  3. Convert to number but retain currency
    By ebbo in forum Excel General
    Replies: 1
    Last Post: 06-12-2009, 10:47 AM
  4. Replies: 1
    Last Post: 05-10-2006, 10:20 PM
  5. Replies: 3
    Last Post: 02-16-2006, 07:00 AM

Tags for this Thread

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