New to numbers - converting decimals to dollars (in the thousands)

Hi,
I'm wanting to avoid manually entering 000 when inputting currency/dollar figures.
Is there a formula I can use for this?
Eg, a way to convert my data entry of 425.6 (or 425,6 if needed) into $425,600. Ditto converting 525 into $525,000.
Alternatively, is there a formula so that I could enter 4256 or 525 and end up with the same $ figure as above?
Given the numbers involved I would also like to know how I can without the cents value (.00) when using the $ formula - but this is not essential.
I'd be thrilled to get any help from anyone!
Thanks in advance.

moneypenny2612 wrote:
I'm wanting to avoid manually entering 000 when inputting currency/dollar figures.
Is there a formula I can use for this?
Eg, a way to convert my data entry of 425.6 (or 425,6 if needed) into $425,600. Ditto converting 525 into $525,000.
Alternatively, is there a formula so that I could enter 4256 or 525 and end up with the same $ figure as above?
As far as I know, this feature is unavailable. You must type the zeroes.
Given the numbers involved I would also like to know how I can without the cents value (.00) when using the $ formula - but this is not essential.
You take time to enter the Inspector > Cell
and set the number of decimal digits to zero.
CAUTION : happily, this feature just change the way the number is displayed.
12.35 will appear as 12 but if you use it in a formula, it's 12.35 which will be used.
It would be a good idea to read *_Numbers User Manual_*
Yvan KOENIG (VALLAURIS, France) dimanche 19 décembre 2010 19:31:56

Similar Messages

  • Need new serial numbers

    Hello! I have Premiere Elements Serial Number  deleted  Photoshop Elements Serial Number deleted - I bought a new computer.. When I install my programs on the new computer I get a message that I have to get new serial numbers, and I have to take the programs out on one of the computer. But I can't  because the old computer doesn't work anymore. So I hope you will resolve my problem because I need those programs and I got them legaly (I paid for them). Thank you very much!!! Antoine Pepe - [email protected]

    First, I am very, very sorry. . . I didn't realize ... Now I know.
    My problem has been resolved by chating with an agent from Adobe. Thank you
    and ... sorry again !!!
    2014-01-28 Barbara B. <[email protected]>
        Re: Need new serial numbers  created by Barbara B.<http://forums.adobe.com/people/Barbara+B.>in *Photoshop
    Elements* - View the full discussion<http://forums.adobe.com/message/6062575#6062575

  • Preparing to get my first apple! $10,000+ Anyone a convert at this dollar?

    Preparing to get my first apple! $10,000+ Anyone a convert at this dollar?
    I've been wanting to get a new computer to really dig into 3d modeling/animation and get a new multicore processor and a 64 bit operating system. The choice is windows 64 bit and a bunch of stuff i'll put together myself for under 2g, or what is seemingly similar items in a mac pro for over 10g.
    Please, someone with switch experience, tell me I'm going the right route before I decide to do something I may regret.
    -Line

    Well, Crucial/Micron is top notch on memory for Mac Pro, as are some others. Apple often uses Micron for OEM. Most people do the 3rd party on RAM and disk drives. Video cards need to be Apple at this point, as it is EFI based BIOS.
    I would wait and see when Apple updates the Mac Pro to use newer Intel Penryn 45nm chips, all quad core for 8 total, given that Intel's official launch date for retail is 11-11-07.
    You want the Radeon X1900 (most are just begging Apple to begin to offer X2900 or something resembling better and more current graphics).
    Actually if you build your own to near same specs for workstation (other than FBDIMMs probably)
    A: I don't think it is worth investing in more than 8GB RAM at this point
    B: The top of the line 8-core 3GHz is about $4500.
    Throw in 4 x 750GB WD RE2 drives or Seagate 7200.11s for $1000.
    4 x 2GB RAM for $1000 just to use round numbers.
    Add RAID6 controller $500 and build your RAID as needed.
    Apple calls memory and such "Do It Yourself" or "Customer Installable Parts" (DIY and CIP). If you take your system in for service, no harm but most people remove some of those items.
    Only if you can afford to buy an all-Apple, and maybe have on-site and enterprise level of support so that if anything isn't right, it is Apple's. However, the price for disk drives from Apple is "substantial" so very few go that route.

  • BUG: Large floating point numbers convert to the wrong integer

    Hi,
    When using the conversion "bullets" to convert SGL, DBL and EXT to integers there are some values which convert wrong. One example is the integer 9223370937343148030, which can be represented exactly as a SGL (and thus exactly as DBL and EXT as well). If you convert this to I64 you get 9223370937343148032 instead, even though the correct integer is within the range of an I64. There are many similar cases, all (I've noticed) within the large end of the ranges.
    This has nothing to do with which integers can be represented exactly as a floating point value or not. This is a genuine conversion bug mind you.
    Cheers,
    Steen
    CLA, CTA, CLED & LabVIEW Champion
    Solved!
    Go to Solution.

    Yes, I understand the implications involved, and there definetely is a limit to how many significant digits that can be displayed in the numeric controls and constants today. I think that either this limit should be lifted or a cap should be put onto the configuration page when setting the display format.
    I ran into this problem as I'm developing a new toolset that lets you convert all the numeric formats into any other numeric format, just like the current "conversion bullets". My conversion bullets have outputs for overflow and exact conversion as well, since I need that functionality myself for a Math toolset (GPMath) I'm also developing. Eventually I'll maybe include underflow as well, but for now just those two outputs are available. Example:
    I do of course pay close attention to the binary representation of the numbers to calculate the Exact conversion? output correctly for each conversion variation (there are hundreds of VIs in polymorphic wrappers), but I relied in some cases on the ability of the numeric indicator to show a true number when configured appropriately - that was when I discovered this bug, which I at first mistook for a conversion error in LabVIEW.
    Is there a compliancy issue with EXT?
    While doing this work I've discovered that the EXT format is somewhat misleadingly labelled as "80-bit IEEE compliant" (it says so here), but that statement should be read with some suspicion IMO. The LabVIEW EXT is not simply IEEE 754-1985 compliant anyways, as that format would imply the x87 80-bit extended format. An x87 IEEE 754 extended precision float only has 63-bit fraction and a 1-bit integer part. That 1-bit integer part is implicit in single and double precision IEEE 754 numbers, but it is explicit in x87 extended precision numbers. LabVIEW EXT seems to have an implicit integer part and 64-bit fraction, thus not straight IEEE 754 compliant. Instead I'd say that the LabVIEW EXT is an IEEE 754r extended format, but still a proprietary one that should deserve a bit more detail in the available documentation. Since it's mentioned several places in the LabVIEW documentation that the EXT is platform independent, your suspicion should already be high though. It didn't take me many minutes to verify the apparent format of the EXT in any case, so no real problem here.
    Is there a genuine conversion error from EXT to U64?
    The integer 18446744073709549568 can be represented exactly as EXT using this binary representation (mind you that the numeric indicators won't display the value correctly, but instead show 18446744073709549600):
    EXT-exponent: 0x100000000111110b
    EXT-fraction: 0x1111111111111111111111111111111111111111111111111111000000000000b
    --> Decimal: 18446744073709549568
    The above EXT value converts exactly to U64 using the To Unsigned Quad Integer "bullet". But then let's try to flip the blue bit from 0 to 1 in the fraction part of the EXT, making this value:
    EXT-exponent: 0x100000000111110b
    EXT-fraction: 0x1111111111111111111111111111111111111111111111111111100000000000b
    --> Decimal: 18446744073709550592
    The above EXT value is still within U64 range, but the To Unsigned Quad Integer "bullet" converts it to U64_max which is 18446744073709551615. Unless I've missed something this must be a genuine conversion error from EXT to U64?
    /Steen
    CLA, CTA, CLED & LabVIEW Champion

  • Can i exchange my old ipodtouch 5 to a new one by paying a hunderd dollars?

    I just broke the front camera of my ipodtouch couple weeks ago and I would like either repair it or exchange for a new one.
    So I am just woundering if can i exchange my old ipodtouch 5 to a new one by paying a hunderd dollars.
    How much does it cost for the repairment of the front camera?
    Thanks!

    You can look up repair prices:
    http://www.apple.com/support/service

  • Tried to open a file I created in Numbers a while ago which I modified on 11/4/13 and got a message that I needed a newer version of Numbers.  When I went to the Mac App Store it shows that the new version is already installed.  Any suggestions?

    Tried to open a file I created in Numbers a while ago, which I modified on 11/4/13, and got a message that I needed a newer version of Numbers.  When I went to the Mac App Store it shows that the new version is already installed and there doesn't seem to be a way to reinstall it.  When I checked "About Numbers" on my MacBook it shows "Numbers '09 version 2.3".  Any suggestions as to how I can get the new version installed?

    Are you launching Pages from an icon in your Dock? Installing the update does not change the Dock icons & it does not remove the older versions. Go to your Applications folder & launch the new Pages from there.

  • Regarding passport registration issues, I need to have a letter from you including both the old and new imei numbers. Could you please send me an email mentioning that I have changed the phones with the given imei numbers?

    Regarding passport registration issues, I need to have a letter from you including both the old and new imei numbers. Could you please send me an email mentioning that I have changed the phones with the given imei numbers?

    You're not addressing Apple here. This is a user-to-user technical support forum. If you want to contact Apple, use the Contact Us link at the bottom right of every page for information on how to do so.
    Best of luck.

  • Hi, i'm new using numbers, and when I try to open a excel file don't let me do it, instead appears a box whit a error and close app,  any help?

    Hi, i'm new using numbers, and when I try to open a excel file don't let me do it, instead appears a box whit a error and close app,  any help?

    What does the error say?
    A couple of thoughts: the file is corrupted or is password-protected. Corruption is more likely to cause Numbers to crash & Numbers cannot open password-protected Excel files. Try using one of the free Office clones & see what happens.

  • Hi,  I've just purchased and installed an upgrade from Lightroom 4 to 5.  It doesn't seem to handle raw files authored with a new Nikon D750 camera.  I spoke to the sales rep about this and he gave me a link to the 8.6 DNG converter page with instructions

    Hi,  I've just purchased and installed an upgrade from Lightroom 4 to 5.  It doesn't seem to handle raw files authored with a new Nikon D750 camera.  I spoke to the sales rep about this and he gave me a link to the 8.6 DNG converter page with instructions to download.  8.6 only works with Mac OS 10.7-10.9, according to the page.  I'm running Yosemite, Mac 10.10.  Please can you tell me my options?  Lightroom 4 worked beautifully with my older cameras' raw files so I would like to continue using the application.  What should I do?  How soon will Lightroom 5 be able to deal with raw files from a D750.  Many thanks, Adam.

    Until the next version of Lightroom is released, you need to use the DNG Converter version 8.7RC to convert your RAW photos to DNG and then import the DNGs into Lightroom.

  • HT1329 I have changed from windows to apple how do I convert my music on my iPod shuffle 3rd gen to my mac iTunes liabary I have also bought a new ipod touch and would like to transfer the music from the old iPod to the new one, no longer have the cd's

    I have a 3rd gen ipod shuffel, it only works when plugged into mains and also I moved from windows to apple and the ipod was formated for windows can I transfer the music to the mac and if so how do i convert, and transfer i have a new ipod touch I would like to trf the old tunes to and no longer have the cd's used to put of the old ipod.

    Download a free app called expod( Click on the link or google search, as this app is not available through the app store.

  • HT202879 I would like to have a spreadsheet editing software for my new Template Numbers Pro but my operating system is 10.7.  Are there other editing software programs (less the 10.9) that can work with this app?

    Hi,
    I am looking for some editing software for my new Template Numbers Pro.  Numbers is 10.9, my computer is only 10.7.  What do you suggest?
    Thanks,
    Billieoh

    Billieoh wrote:
    That is good to know.  Frankly I don't know what kind of machine I have.  I have a Mac OSX Lion 10.7.3 early 2008.
    If it's the "Templates for Numbers Pro" on the Mac App Store then you need OSX 10.7 or later.  You'll need iWork '09 or later.
    It looks as if you want to use the iOS version of the same templates then you will need the latest Numbers there.  And if you use the latest Numbers there and want to sync to the Mac, you'll need to have Mavericks and Numbers 3.
    SG

  • How can I convert text to PDF in the new "Pages" without losing info.

    How can I convert text to PDF in the new "Pages" without losing a lot if information?

    Select Export To from Pages' File menu, then select PDF from the sub-menu.

  • Is there a procedure to open keynote 09 files with videos in the new Keynote without converting videos?

    is there a procedure to open keynote 09 files with videos in the new Keynote without converting videos?
    I have a big presentation with many video mov and avi files created with Keynote 09. When trying to open the file in the new Keynote the procedured crashes and Keynote crashes abruptly. It seens that an avi file is not converted. I have no more the old Keynote 09. How can this problem be solved?

    if you right click or control click on the file, do you get an option to 'show package contents'?

  • I just updated to Numbers 3.0.1. In the old version if I started to type a name that was already in the spreadsheet, it would automatically fill it in. That doesn't happen in the new version. What am I missing to get that to happen?

    I just updated to Numbers 3.0.1. In the old version if I started to type a name that was already in my spreadsheet (in another cell), it would automatically fill that name in. That is not happening in the new version. Am I missing something to get that to happen? Thanks

    If you frequently enter repeating values in a column and don't want to type the same text over and over again, instead of just waiting for Apple's updates why not try using an enhanced feature in Numbers 3 that in many (probably most) situations is even better than "auto-complete"?
    Numbers 3 has an enhanced Pop-Up Menu functionality that helps prevent typos or capitalization inconsistencies from creeping in and messing up your data. It is also much more efficient than auto-complete in Numbers for iOS, should you ever want to sync to an iPad or iPhone and do data entry there.
    Pop-Up Menu is much enhanced over what it was in Numbers 2.3, and is easy to set up:
    Select the whole column or range before formatting as Pop-Up Menu and your existing values in that column or range will pre-populate a menu automatically:
    Then you can remove the values you don't want in the list, such as the column header (and possibly some previous spelling errors too!):
    And after this easy one-time setup all you have to do thereafter is to choose from the pop-up list when you add rows:
    See this post for more details on how this handy feature has been enhanced in Numbers 3.0.
    Should you ever want to take your Numbers with you and do data entry on an iPad or iPhone, in a touch interface, pop-ups are much more efficient than typing the first few letters of items. You can scroll with ease through a list of dozens of items to make a pick. Anybody using Numbers cross-platform should favor Pop-Up so they can use their documents efficiently for data input on the go, which can be a productivity booster.
    See this thread for this and other workarounds for Numbers 3.0.
    SG

  • I am new to iWorks and would like to change the view on my spreadsheet in Numbers to landscape.  I can't find where to do that.  I am even able to do that? Please help!

    I am new to iWorks and would like to change the view on my spreadsheet in Numbers to landscape.  I can't find where to do that.  I am even able to do that? Please help!

    you can change the page orientation by selecting the menu item "File > Print..." then adjust the orientation in "Page Orientation" section, then click "Done" (or "Print", if you want to print).

Maybe you are looking for

  • Can I use a Self Encrypted ( hardware ) hard drive in my mid 2009 Mac?

    I want to use a self encrypted (hardware encryption) hard drive in my mid 2009 13" MacBook Pro. Has anyone ever gotten this to work, or is it listed as "possible" by Apple somewhere? Thanks.

  • Regenerate the security files : SecStore.properties and SecStore.key

    Hello Expert, I have a big issue because I lost the both files : SecStore.properties and SecStore.key from the directory /sapmnt/SID/global/security/data. I tried to regenerate the SecStore.properties  from another instance. And when I tried to conne

  • PC and MAC

    i have previously purchased adobe cs6 for PC however i am looking to purchase a mac now, i was wondering if there was a way to convert my membership to the same cs6 version that is compatible with a mac?

  • Problems downloading Trial Version of AE

    I'm trying to download AE CS3 right from the adobe.com website, and everything runs smoothly until i actually try to run the program. I download everything and then I click on the AE icon, and I get a dialog box asking if I want to: A) Type in a seri

  • Lenovo U430P shuts down after a while

    Hi folks, i got here a Lenovo U430P which falls in a kind of sleep mode where the power button is constantly illuminated. Doesn't matter which button i press he's not restarting or responding in any way. It's not the sleep mode i guess because that o