Please help!  Can't make commas (thousands separator) appear in numbers

I open Pages. I type in a number (123456). While cell is still selected, I open Inspector and select Cell Format = Number. I then check the Thousands Separator checkbox. It does NOT put commas in my number.
Any help greatly appreciated!

A couple of thoughts:
First, make sure you have US formatting as the default for numbers (not the program Numbers) in System Preferences > International > Formats.
In the table inspector click on Format & make sure the cell is formatted to number & press Enter/Return/Tab to move out of the cell & see if it "takes" then.
If none of that works, it could be corrupt preferences. Quit Pages & then delete the com.apple.iwork.pages.plist file found in HD > Users > (your account) > Library > Preferences.
Fruhulda,
The thousands separator in the US (where the OP is) is a comma & the decimal is a period/full stop/dot.
Message was edited by: Peggy

Similar Messages

  • I forgot my icloud account and my email how can i recover it please help me icloud maker and icloud password and username holder

    i forgot my icloud account and my email how can i recover it please help me icloud maker and icloud password and username holder

    If you don't know your ID, you can try to find it as explained here: http://support.apple.com/kb/HT5625.  Then you can reset the password as explained here: http://support.apple.com/kb/PH2617.  Of course, you can only do this if it's your ID.

  • HT1386 please help me to make synch between my computer and iphone , on the file tab it is not possible to click, thanks

    my dear,
    please help me to make synch between my computer and iphone , on the file tab it is not possible to click.
    appreciate your help and thanks in advance.
    regards
    hesham

    You can't
    Apple has never approved a method to downgrade iOS
    Allan

  • Guys i need to get m itunes account unlocked its stopping mefor making in app purchases please help need to make a purchase within 30 minutes

    guys i need to get my itunes account unlocked its stopping mefor making in app purchases please help need to make a purchase within 30 minutes

    If you've tried to buy something and your've been charged for it (and it's not a temporary store holding charge) but haven't received it then try the 'report a problem' page to contact iTunes Support : http://reportaproblem.apple.com
    If the 'report a problem' link doesn't work then you can try contacting iTunes support via this page : http://www.apple.com/support/itunes/contact/- click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • Please help: Can't download itunes with windows 7 (64 bit).  Keeps freezing at 99%

    I have tried deleting and re-installing itunes and quicktime but it still won't work.  Please help.

    Can someone please respond to my request for support?  I tried the provided correct answer at https://discussions.apple.com/message/11561783#11561783  but it did not work. 
    I also got a MSFT tech support person to remotely look at my machine, for what its worth, he said the registry file is fine and to contact Apple support.
    Any help would be very much appreciated.

  • How can i make the text go vertically in numbers

    How can I make the text vertical in numbers?  I have merged the cells and cannot find an option for making it go vertical as opposed to horizontal.

    I already gave two tools to fit this kind of needs.
    tip #1 :
    --{code}
    --[SCRIPT write_vertically]
    Enregistrer le script en tant que Script : write_vertically.scpt
    déplacer le fichier ainsi créé dans le dossier
    <VolumeDeDémarrage>:Utilisateurs:<votreCompte>:Bibliothèque:Scripts:Applications :Numbers:
    Il vous faudra peut-être créer le dossier Numbers et peut-être même le dossier Applications.
    Saisir dans une cellule le mot à écrire verticalement puis le sélectionner.
    ATTENTION, il ne faut pas sélectionner la cellule mais le mot qui doit apparaitre surligné.
    Aller au menu Scripts , choisir Numbers puis choisir “write_vertically”
    Le script colle dans la cellule le mot apès avoir inséré un return entre tous les caractères.
    Pour mon usage personnel j'associe un raccourci à ce script grace à FastScripts.
    --=====
    L’aide du Finder explique:
    L’Utilitaire AppleScript permet d’activer le Menu des scripts :
    Ouvrez l’Utilitaire AppleScript situé dans le dossier Applications/AppleScript.
    Cochez la case “Afficher le menu des scripts dans la barre de menus”.
    Sous 10.6.x,
    aller dans le panneau “Général” du dialogue Préférences de l’Éditeur Applescript
    puis cocher la case “Afficher le menu des scripts dans la barre des menus”.
    --=====
    Save the script as a Script: write_vertically.scpt
    Move the newly created file into the folder:
    <startup Volume>:Users:<yourAccount>:Library:Scripts:Applications:Numbers:
    Maybe you would have to create the folder Numbers and even the folder Applications by yourself.
    In a cell, type a word to write vertically then select it.
    CAUTION, don’t select the cell but the word which must be highlighted.
    Go to the Scripts Menu, choose Numbers, then choose “write_vertically”
    The script insert in the cell the word after inserting a return between every characters.
    For my own use, I link a shortcut to the script thank to FastScripts.
    --=====
    The Finder’s Help explains:
    To make the Script menu appear:
    Open the AppleScript utility located in Applications/AppleScript.
    Select the “Show Script Menu in menu bar” checkbox.
    Under 10.6.x,
    go to the General panel of AppleScript Editor’s Preferences dialog box
    and check the “Show Script menu in menu bar” option.
    --=====
    Yvan KOENIG (VALLAURIS, France)
    2011/12/17
    2012/01/01 no longer use a local variable, use result
    --=====
    on run
    Clear the clipboard *)
      set the clipboard to ""
    Copy the selection in the clipboard *)
              my raccourci("Numbers", "c", "c")
    Loop waiting that the clipboard is really filled *)
              repeat
                        try
                                  if (the clipboard as text) is not "" then exit repeat
                        on error
                        end try
              end repeat
    Extract the clipboard's content *)
      the clipboard as text
    Insert return between every characters *)
              my recolle(every character of result, return)
    Fill the clipboard with the edited string *)
      set the clipboard to result
    Paste in the cell *)
              my raccourci("Numbers", "v", "cas")
    end run
    --=====
    on recolle(l, d)
              local oTIDs, t
              set oTIDs to AppleScript's text item delimiters
              set AppleScript's text item delimiters to d
              set t to l as text
              set AppleScript's text item delimiters to oTIDs
              return t
    end recolle
    --=====
    on activateGUIscripting()
      (* to be sure than GUI scripting will be active *)
              tell application "System Events"
                        if not (UI elements enabled) then set (UI elements enabled) to true
              end tell
    end activateGUIscripting
    --=====
    ==== Uses GUIscripting ====
    This handler may be used to 'type' text, invisible characters if the third parameter is an empty string.
    It may be used to 'type' keyboard raccourcis if the third parameter describe the required modifier keys.
    I changed its name « shortcut » to « raccourci » to get rid of a name conflict in Smile.
    on raccourci(a, t, d)
              local k
              tell application a to activate
              tell application "System Events" to tell application process a
                        set frontmost to true
                        try
                                  t * 1
                                  if d is "" then
      key code t
                                  else if d is "c" then
      key code t using {command down}
                                  else if d is "a" then
      key code t using {option down}
                                  else if d is "k" then
      key code t using {control down}
                                  else if d is "s" then
      key code t using {shift down}
                                  else if d is in {"ac", "ca"} then
      key code t using {command down, option down}
                                  else if d is in {"as", "sa"} then
      key code t using {shift down, option down}
                                  else if d is in {"sc", "cs"} then
      key code t using {command down, shift down}
                                  else if d is in {"kc", "ck"} then
      key code t using {command down, control down}
                                  else if d is in {"ks", "sk"} then
      key code t using {shift down, control down}
                                  else if (d contains "c") and (d contains "s") and d contains "k" then
      key code t using {command down, shift down, control down}
                                  else if (d contains "c") and (d contains "s") and d contains "a" then
      key code t using {command down, shift down, option down}
                                  end if
                        on error
                                  repeat with k in t
                                            if d is "" then
      keystroke (k as text)
                                            else if d is "c" then
      keystroke (k as text) using {command down}
                                            else if d is "a" then
      keystroke k using {option down}
                                            else if d is "k" then
      keystroke (k as text) using {control down}
                                            else if d is "s" then
      keystroke k using {shift down}
                                            else if d is in {"ac", "ca"} then
      keystroke (k as text) using {command down, option down}
                                            else if d is in {"as", "sa"} then
      keystroke (k as text) using {shift down, option down}
                                            else if d is in {"sc", "cs"} then
      keystroke (k as text) using {command down, shift down}
                                            else if d is in {"kc", "ck"} then
      keystroke (k as text) using {command down, control down}
                                            else if d is in {"ks", "sk"} then
      keystroke (k as text) using {shift down, control down}
                                            else if (d contains "c") and (d contains "s") and d contains "k" then
      keystroke (k as text) using {command down, shift down, control down}
                                            else if (d contains "c") and (d contains "s") and d contains "a" then
      keystroke (k as text) using {command down, shift down, option down}
                                            end if
                                  end repeat
                        end try
              end tell
    end raccourci
    --=====
    --[/SCRIPT]
    --{code}
    tip #2 :
    --{code}
    --[SCRIPT rotate_cell_contents]
    Enregistrer le script en tant que Script : rotate_cell_contents.scpt
    déplacer le fichier ainsi créé dans le dossier
    <VolumeDeDémarrage>:Users:<votreCompte>:Library:Scripts:Applications:Numbers:
    Il vous faudra peut-être créer le dossier Numbers et peut-être même le dossier Applications.
    Sélectionner une cellule dont le texte doit être tourné de 90 degrés.
    Aller au menu Scripts , choisir Numbers puis choisir “rotate_cell_contents”
    --=====
    L’aide du Finder explique:
    L’Utilitaire AppleScript permet d’activer le Menu des scripts :
    Ouvrez l’Utilitaire AppleScript situé dans le dossier Applications/AppleScript.
    Cochez la case “Afficher le menu des scripts dans la barre de menus”.
    Sous 10.6.x,
    aller dans le panneau “Général” du dialogue Préférences de l’Éditeur Applescript
    puis cocher la case “Afficher le menu des scripts dans la barre des menus”.
    --=====
    Save the script as a Script: rotate_cell_contents.scpt
    Move the newly created file into the folder:
    <startup Volume>:Users:<yourAccount>:Library:Scripts:Applications:Numbers:
    Maybe you would have to create the folder Numbers and even the folder Applications by yourself.
    Select a cell whose contents must be rotated for 90 degrees.
    Go to the Scripts Menu, choose Numbers, then choose “rotate_cell_contents”
    --=====
    The Finder’s Help explains:
    To make the Script menu appear:
    Open the AppleScript utility located in Applications/AppleScript.
    Select the “Show Script Menu in menu bar” checkbox.
    Under 10.6.x,
    go to the General panel of AppleScript Editor’s Preferences dialog box
    and check the “Show Script menu in menu bar” option.
    --=====
    Yvan KOENIG (VALLAURIS, France)
    2011/06/23
    2011/06/26 -- No longer use an auxiliary text box. Now keep the text attributes.
    2012/01/31 -- edited for Lion
    --=====
    on run
              local dName, sName, tName, rowNum1, colNum1, rowNum2, colNum2
              local le_texte, la_largeur, la_hauteur, myNewDoc
              my activateGUIscripting()
    Extract properties of the source/target cell *)
              set {dName, sName, tName, rowNum1, colNum1, rowNum2, colNum2} to my get_SelParams()
              tell application "Numbers" to tell document dName to tell sheet sName to tell table tName
                        set selection range to range (name of column colNum1 & name of row rowNum1)
              end tell
    Cut*)
              my raccourci("Numbers", "x", "c")
    Trigger Preview *)
              tell application "System Events"
                        if "Preview" is not in (name of every application process) then launch application "Preview"
              end tell
      delay 0.2 -- required
    New document from the clipboard *)
              my raccourci("Preview", "n", "c")
    Rotate to left *)
              my raccourci("Preview", "l", "c")
    Copy *)
              my raccourci("Preview", "c", "c")
    Quit *)
              my raccourci("Preview", "q", "c")
              (system attribute "sys2") < 7
              if result then
    Click the [Don't Save] button in the warning sheet *)
                        tell application "Preview" to activate
                        tell application "System Events" to tell application process "Preview" to tell window 1
                                  name of buttons
                                  repeat 50 times
                                            delay 0.1
                                            if exists sheet 1 then exit repeat
                                  end repeat
                                  tell sheet 1 to click button 2
                        end tell
              end if
    Back to Numbers *)
              tell application "Numbers" to tell document dName to tell sheet sName to tell table tName
      -- just reset the focus on the table
              end tell
    Paste in the cell *)
              my raccourci("Numbers", "v", "c")
    end run
    --=====
    set { dName, sName, tName,  rowNum1, colNum1, rowNum2, colNum2} to my get_SelParams()
    tell application "Numbers" to tell document dName to tell sheet sName to tell table tName
    on get_SelParams()
              local d_name, s_name, t_name, row_num1, col_num1, row_num2, col_num2
              tell application "Numbers" to tell document 1
                        set d_name to its name
                        set s_name to ""
                        repeat with i from 1 to the count of sheets
                                  tell sheet i to set maybe to the count of (tables whose selection range is not missing value)
                                  if maybe is not 0 then
                                            set s_name to name of sheet i
                                            exit repeat
                                  end if -- maybe is not 0
                        end repeat
                        if s_name is "" then
                                  if my parleAnglais() then
                                            error "No sheet has a selected table embedding at least one selected cell !"
                                  else
                                            error "Aucune feuille ne contient une table ayant au moins une cellule sélectionnée !"
                                  end if

  • Sign into iCloud pop-up message on iPad2 won't disappear off screen, have reset password multiple times but it is saying incorrect. Please HELP unable to use iPad as message appears every few seconds, iPad was working fine until now.

    Sign into iCloud pop-up message on iPad2 won't disappear off screen, have reset password multiple times but it is saying incorrect. Please HELP unable to use iPad as message appears every few seconds, iPad was working fine until now.

    After the restore did the phone work properly for a while? Say, a day or so?
    If so it is possible you have an app that doesn't let go of memory properly. I reboot my iPhone ( hold sleep/wake and hole till you see the apple logo) every few days. This resets the memory. The iPhone OS has doesn't seem to mange memory very well yet. So a reboot will help with that. I have had my phone almost slow to a stop before I started rebooting. Always reboot after installing a new app. Also do you close all pages in Safari when you are done? This is a good practice. Safari will run in the background and use processor time and drain your battery quicker. Create a new blank page then close all others when you are done browsing for a while. I have also found that certain web site that have animated images like weather maps will turn the phone into molasses. As soon as i close that page it gets faster.
    If all of the above have no effect then as Tamara said it is time for a trip to the Genius bar.
    Good luck

  • Please help. can't get definition around a text. pulling out my hair :(

    hi. i was following a tutorial to give text a 3D effect.
    the tutorial is located here:
    http://www.illustratortechniques.com/3d-text-effect.html
    i am only two steps in and did exactly what was told but my text effect looks different than his. his text has definition so you can make out what it is whereas mine does not.
    the screenshot of the difference is here:
    http://www.macrochild.com/help.jpg
    (mine is on the left. the tutorial is on the right.)
    please help me i did this five times and i can't duplicate that image.

    Hello,
    In the texts 3D dialogue box you need to switch some sort of shading on, either plastic of difuse, or you could put a very small dark stroke around the outside of your text. It's probably the shading though, it's the surface drop down box at the very bottom (or if you have advanced on it's in the middle).
    Regards
    Paul

  • Please Help - Can't send to External Hard Drive

    I am in the project manager - I am copying and sending to new location - E Drive, external hard drive.
    But, when I try it stops and says this:
    "There was a problem... please make sure you have enough disk space..."dude, i got 500gigs and the project is 13 gigs (so that's not the problem) ... then it says: "make sure you have the correct user privileges to complete the operation."
    what?
    This is my software, my license, my computer, and my project. of course I have user privileges.
    Please help...

    There's a chance that nothing's wrong with your drive, and that it's one particular piece of media in your timeline that's choking the project trimmer & causing it to abort with a generic error.
    I'm guessing that you're probably cutting an hour-long DV project. Are any of your clips not DV? Anything ripped from a DVD, perhaps? If you suspect certain clips are tripping you up, try removing them temporarily (make a backup of your master project file, just in case!) & try the trimmer again.
    If you can't make an educated guess, you can fall back on this method: make a copy of your project. Delete half of the timeline; trim again. Does it fail? If so, split the remainder in two, trim again. Keep going until it doesn't fail anymore. In this manner, you'll be able to narrow down what clip(s) is giving you trouble.
    If you do pinpoint a particular clip that won't trim, please let me know what it is. I'd like to take a look...
    Cheers

  • Itunes has stopped working - Please help - Can't SYNC !!

    I have windows 7.
    I have the latest Itunes.
    My Itunes works fine.
    When I plug in my iphone 4 I tunes works fine.
    Whe I click sync Iphone, it gets to step 3/4 of the sync process and then it says " I tunes has stopped working" underneath that it says "Windows can check online for a solution to the problem". When I clikc view problem details I get:
    Problem signature:
      Problem Event Name:    APPCRASH
      Application Name:    iTunes.exe
      Application Version:    10.4.1.10
      Application Timestamp:    4e4e1904
      Fault Module Name:    QuickTime.qts
      Fault Module Version:    7.70.80.34
      Fault Module Timestamp:    4e13ba08
      Exception Code:    c0000005
      Exception Offset:    00146b30
      OS Version:    6.1.7601.2.1.0.768.3
      Locale ID:    2057
      Additional Information 1:    0a9e
      Additional Information 2:    0a9e372d3b4ad19135b953a78882e789
      Additional Information 3:    0a9e
      Additional Information 4:    0a9e372d3b4ad19135b953a78882e789
    Read our privacy statement online:
      http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409
    If the online privacy statement is not available, please read our privacy statement offline:
      C:\Windows\system32\en-US\erofflps.txt
    I have already tried uninstalling itunes, quick time and apple support programmes, and then reinstalling all of them.
    Help will be highly appreciated.
    Thanks.

    So sorry - I'm in the same boat!  Someone please help us out!!!!!

  • Please help: can bullets look normal in JavaHelp?

    When I generate JavaHelp (using RoboHelp) and preview, the bullets have prongs sticking out of them, instead of being smooth. Has anyone else encountered this? Is it a RoboHelp problem or a JavaHelp problem? Please help! I have to create compressed JavaHelp, and it's horribly ugly right now.
    Thanks!

    I know of no way to make a 4:3 hi-def movie. Unless you just want to crop off the sides -- but then you'll just have a widescreen video with black bars on the sides!

  • I have restored my iphone and its saying time remaining is about 24 hours can you please help. can i switch the phone back on ? please help ??? :(

    after there being an error in trying to update the software it said i have to restore my phone which i have done but says time remaining is about 24 hours . can you please help ? i just want to switch my phone on again .

    Hello lyndsey1430,
    From what I can gather, it sounds like you're having issues restoring your device. After reviewing your post, I have located an article that can help in this situation. It contains helpful advice concerning recovery mode:
    If you can't update or restore your iPhone, iPad, or iPod touch
    Use recovery mode
    You might need to use recovery mode to restore your device in these cases:
    iTunes doesn't recognize your device or says it's in recovery mode.
    You see the Apple logo onscreen for several minutes with no progress bar.
    You see the Connect to iTunes screen.
    Learn what to do if you see the progress bar onscreen for several minutes.
    To put your device into recovery mode, follow these steps:
    Turn off your device and leave it off.
    Plug in your device's USB cable to a computer with iTunes. 
    Hold down the Home button on your device as you connect the USB cable. Keep holding down the Home button until you see the Connect to iTunes screen.
    When you see this screen, release the Home button. If you don't see this screen, try steps 1 through 3 again. 
    When your device is connected, iTunes will open. You'll see a message saying that iTunes has detected an iPhone, iPad, or iPod touch in recovery mode.
    Use iTunes to restore your device. Restoring in recovery mode will erase your device. If you previously synced with iTunes or iCloud, you might be able to restore from your backup.
    Get more help
    Learn what to do if you don't see your device in iTunes for OS X, or in iTunes for Windows.
    If you put your device into recovery mode by mistake, restart it. Or you can wait 15 minutes and your device will exit recovery mode by itself.
    Thank you for contributing to Apple Support Communities.
    Cheers,
    BobbyD

  • Please Help--Can't fill out or submit/save .PDF forms

    Hi-
    Running Safari 5.1.2 on Mac OS 10.6.8 (the latest updates according to software update) and using the Schubert PDF browser plugin. http://www.schubert-it.com/pluginpdf/
    Before updating from Safari 5.0.xxxx I could fill out and submit .PDF forms in Safari without any issues. Now, I cannot. The form comes up but I cannot enter any text into the text fields.
    About a month ago I went through this and had to revert back from a time machine back up because the ability to fill out forms in browser is an everyday necessity for me.
    Does anyone know how to fix this issue?? Please help...

    Ok.. I still cannot get this figured out. I'm baffled and frustrated!!
    I did a deep cache cleaning using Snow Leopard Cash Cleaner, all of your reccomendations, and about an hours worth of reading. I had the schubert-it plug in uninstalled and have gone back to reinstalling it with no luck. I was thinking after all the cache cleaning it might work. Nope..
    I can't beleive this is an issue after an update.. Apple is normally so great with this stuff.
    The com.adobe.reader folder does not exist on my computer.
    This problem occurs with any online form, not just the ones I need to access and submit, and it occurs with the native PDF support in Safari as well as the schubert app.
    Any other ideas? I read on one post where someone fixed it with quicktime, but the video he put up to show how he fixed it was no longer available.
    Carolyn, or anyone else, .. any ideas??

  • PLEASE HELP - Can't sign in on iTunes!!

    I have had an iTunes account for years now but yesterday I tried to sign in and got the following message...
    We could not complete your iTunes Store Request. An unknown error occured (-9808).
    There was an error in the iTunes Store. Please try again later.
    And it has said this ever since - every time I try to sign in. So I cannot make purchases, get album artwork etc. Reeeally frustrating.
    Has this happened to anyone else?
    Does anybody know what's wrong / how to fix?
    Please help!!

    You don't have the iPad connected to the computer with the cable while you are trying to download apps on the iPad do you?
    I'm running out of ideas here. Try this, reboot your iPad and then try again. If you are connected to the computer, disconnect the iPad first.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.

  • Please Help:  Can't Access iTunes Store?  What is Wrong?

    Hi there - please help!
    Since downloading the latest iTunes update I get the following error message every time I click on my iTunes Store:
    'ITUNES COULD NOT CONNECT TO THE ITUNES STORE. THE NETWORK CONNECTION WAS REFUSED.
    MAKE SURE YOUR NETWORK SETTINGS ARE CORRECT AND YOUR CONNECTION IS ACTIVE, THEN TRY AGAIN'
    (Message in not in capitals, obviously)
    But.... my network settings are correct (I think - what does this mean?!) - and the connection works fine.
    What could be wrong? Has anyone else had this problem? And how would I fix it? Please advise - thank you!
    vaio   Windows XP  

    Are you running Norton Internet Security or anything similar? There have been reports that Norton and similar firewall products treat an upgrade as a new application and so you have to go in and reallow connections for iTunes. Check the settings and if necessary remove and re-enable the exception for iTunes (consult your privacy filter's documentation for the appropriate procedure). You may also need to check the built-in Windows firewall as well.
    Hope this helps.

Maybe you are looking for

  • Export & Import in the same DataBase

    Hi, I'm trying to export and import in the same DataBase but in different User/Tablespace, the imp procces create the objects in the same Tablespace of the export. What can I do to create a copy of a schema in the same database? Thanks. JEA

  • M92Z like monitor display port in connect to DVI thinkpad ultra dock

    I´m coneccting a thinkpad ultra dock DVI to M92Z display port in, but not work, the monitor is in black. I´m using a DVI cable and a DVI to Display port adapter (43N9160).

  • Consignment settlement reverse

    Hi Gurus, I have done consignement settlement thro MRKO.I want to reverse the settlement .Is it possible.What are the steps to do it? regards murugan

  • Creating Web Galleries

    I have tried to search for a like post, so sorry if I duplicate this. My Aperture install is fine and has been running for about 6 months now. I use the web gallery feature to show proofs of weddings I have done, it has worked twice. Now when I selec

  • Opening up tabs in safari using ISO 7

    I have just downloaded iso7 on my ipad 2 and I can't see how to open new tabs in safari or create favorites.