Can't get my table to sort. Please help

Can't seem to get my table to sort. That was a non-issue with the previous version of Numbers but now if I try to sort ascending by totals it just shuffles my numbers with no visible logic. Please help, this is such a simple task, shouldn't be so hard. I tried all suggestions on the forum and nothing works. This is a snapshot of the table:
And this is the result after sorting descending by Totals column:
Any and all help welcome!

Hi Dannie,
Sorting in Numbers 3 follows a different pattern from Numbers 2. Formulas do not automatically adjust.
When Numbers 3 was installled, it was placed in your Applications folder. Numbers 2 was moved to a subfolder called iWork '09 within your applications folder.
With your document open in Numbers 3, File > Export To > Numbers '09. Then use Numbers '09 (Numbers 2) to work on it.
Wayne Contello has written a User Tip for working with the old and new versions of iWork.
https://discussions.apple.com/docs/DOC-6991
The trick is to drag icons for both versions to your Dock. Right click or control click on each and Options > Keep in Dock. That puts you in charge of which version you launch.
Here is a screen shot of both Numbers icons on my Dock.
Numbers 2.3 (Numbers '09) on the left with a three column graph.
Numbers 3.2 on the right with a four column graph.
Both versions will run happily together. Just be sure which version is opening your document.
Instead of double clicking the document, run whichever version of Numbers/Pages/Keynote suits and use File > Open.
Regards,
Ian.

Similar Messages

  • I down loaded about 100 cds to my library and I can no longer view the downloaded artwork it's shows a black picture or blank. How can I get the artwork back? Please help! Thank you

    I downloaded about 100 cds to my library and I can no longer view the downloaded artwork it's shows a black picture or blank. How can I get the artwork back? Please help! Thank you.

    Hi- apparently I also had a similar moment of madness and thought that 'freeride games' would be fun. Well, so much for that! It added a ton of things to my tool bar, I would like to uninstall it, any suggestions for this one?
    thanks :)

  • After resetting my Airport Extreme, I can't get it to work! Please help!

    Hey everyone!
    I have an airport extreme base station (wireless n-gigabit ethernet) and awhile ago it stopped working on me. I simply reset my aebs and whenever I open airport utility and try and configure my aebs, it tells me I have an error and can't connect to the aebs. I have comcast internet service and my aebs is connected to my router. It's been working successfully for about a couple months and now it's stopped working. : (
    I've tried this both in manual setup and the regular setup. I've gone through the trouble of doing a hard reset (pressing the reset button until it flashes amber), I've unplugged the power while holding the reset button, connecting my laptop with the aebs via ethernet, making sure everything is updated (and it is), resetting the router, and even reinstalled my airport utility disk.
    Please help! Any suggestions would be greatly appreciated!

    I also tried setting up my aebs on my neighbor's internet and it worked like a charm! Setting up aebs was as easy as when it first worked. Now if only I can get it to work on my internet...

  • Trying to create HTML5 Video Playlist in Edge Animate - I can't get it to work. Please help!?!?

    Hi All,
    I am creating an interactive site through Edge Animate and am in the process of trying to create a HTML 5 Video Playlist to function within Edge Animate.
    Current Process - Example:
    I have 3 videos that need to be played on a certain page.
    I created a symbol and dragged the videos to the stage and hidden them within that symbol's timeline.
    I then use thumbnail images in a side playlist to either .remove(); .hide(); a video and .show(); the next.
    However when I do a hide / show option, the video continue to plays in the background if I don't also create an if/else statement to pause it.
    My concern with pausing it is that it will continue to load and dramatically slow down the load time of the site.
    References:
    I found this which looks very helpful but don't know how to add this to edge composition.
    http://demosthenes.info/blog/909/Create-An-Automatic-HTML5-Video-Playlist
    Please help or put me in the right direction to create a playlist would be hugely... AMAZINGLY.. helpful.
    Thanks,
    Jason

    Hi Joe,
    Thank you so much for your help on this one. It is hugely appreciated!!
    I have been working frantically to implement your solution to get this working. I used the 'change src' method.
    I have added all my code below in case anyone wants the solution in the future.
    Could you please help below as I am now totally stuck with the <track> and 'event listener issues' !!
    Issue #1:
    I am having major problems with loading the 'closed captions' track element.
    Everything I click for the video to change source / to the next video, the closed caption track adds to the video and doesn't 'unload' the previous one. You then end up with multiple different subtitle tracks on the video screen
    - The closed captions / subtitles are not showing up in Google Chrome either?
    Issue #2:
    I can't get the event listener in edge animate to work for 'playing' and 'ended'. Can you please help and point me in the correct direction??
    Screenshot (showing what happens after the 3rd video is loaded)
    This is the Code I am currently using in the "Creation Complete" of this Symbol.
    SET UP OF VIDEO PLAYER AND FIRST VIDEO
    var vid = sym.$("video_Chapter5");
    vid.html('<video id="ch5video" width="100%" height="auto" margin= "0 auto"  \
    position ="relative"  poster="video/video1_poster.jpg"  controls="controls" </video> \
    <source id ="videomp4src" src="video/Video_mp4_1.mp4" type="video/mp4" </source> \
    <source id ="videoogvsrc" src="video/Video_ogv_1.ogg" type="video/ogv" </source> \
    <source id ="videowebmsrc" src="video/Video_webm_1.ogg" type="video/webm" </source> \
    <track id ="trackvtt" kind="subtitles" src="video/Video_1_Script.vtt" srclang="en" label="English" hidden </track>');
    VARIABLE IDS
    $(document).ready(function() {
      var videoID = 'ch5video';
      var sourceID1 = 'videomp4src';
      var sourceID2 = 'videoogvsrc';
      var sourceID3 = 'videowebmsrc';
      var trackID = 'trackvtt';
      var vid1mp4 = 'video/Video_mp4_1.mp4';
      var vid2mp4 = 'video/Video_mp4_2.mp4';
      var vid3mp4 = 'video/Video_mp4_3.mp4';
      var vid4mp4 = 'video/Video_mp4_4.mp4';
      var vid1ogv = 'video/Video_ogv_1.ogv';
      var vid2ogv = 'video/Video_ogv_2.ogv';
      var vid3ogv = 'video/Video_ogv_3.ogv';
      var vid4ogv = 'video/Video_ogv_4.ogv';
      var vid1webm = 'video/Video_webm_1.webm';
      var vid2webm = 'video/Video_webm_2.webm';
      var vid3webm = 'video/Video_webm_3.webm';
      var vid4webm = 'video/Video_webm_4.webm';
      var script1vtt = 'video/Video_1_Script.vtt';
      var script2vtt = 'video/Video_2_Script.vtt'; 
      var script3srt = 'video/Video_3_Script.vtt'; 
      var script4vtt = 'video/Video_4_Script.vtt';   
      var newposter1 = 'video/video1_poster.jpg';
      var newposter2 = 'video/video2_poster.jpg';
      var newposter3 = 'video/video3_poster.jpg';
      var newposter4 = 'video/video4_poster.jpg';
    VIDEO PLAYLIST THUMBNAIL BUTTONS - TO CHANGE VIDEO IN PLAYER
      sym.$('btn1').click(function(event) {
      sym.$('#'+videoID).get(0).pause();
      sym.$('#'+sourceID1).attr('src', vid1mp4);
      sym.$('#'+sourceID2).attr('src', vid1ogv);
      sym.$('#'+sourceID3).attr('src', vid1webm);
      sym.$('#'+trackID).attr('src', script1vtt);
      sym.$('#'+videoID).get(0).load();
      sym.$('#'+videoID).attr('poster', newposter1);
      sym.$('#'+videoID).get(0).play();  
      sym.$('btn2').click(function(event) {
      sym.$('#'+videoID).get(0).pause();
      sym.$('#'+sourceID1).attr('src', vid2mp4);
      sym.$('#'+sourceID2).attr('src', vid2ogv);
      sym.$('#'+sourceID3).attr('src', vid2webm);
      sym.$('#'+trackID).attr('src', script2vtt);
      sym.$('#'+videoID).get(0).load();
      sym.$('#'+trackID).load();
      sym.$('#'+videoID).attr('poster', newposter2);
      sym.$('#'+videoID).get(0).play();  
      sym.$('btn3').click(function(event) {
      sym.$('#'+videoID).get(0).pause();
      sym.$('#'+sourceID1).attr('src', vid3mp4); 
      sym.$('#'+sourceID2).attr('src', vid3ogv); 
      sym.$('#'+sourceID3).attr('src', vid3webm);
      sym.$('#'+trackID).attr('src', script3srt);
      sym.$('#'+videoID).get(0).load();
      sym.$('#'+videoID).attr('poster', newposter3);
      sym.$('#'+videoID).get(0).play();
      sym.$('btn4').click(function(event) {
      sym.$('#'+videoID).get(0).pause();
      sym.$('#'+sourceID1).attr('src', vid4mp4);
      sym.$('#'+sourceID2).attr('src', vid4ogv);
      sym.$('#'+sourceID3).attr('src', vid4webm);
      sym.$('#'+trackID).attr('src', script4vtt);  
      sym.$('#'+videoID).get(0).load();
      sym.$('#'+videoID).attr('poster', newposter4);
      sym.$('#'+videoID).get(0).play(); 
    EVENT LISTENER FOR PLAYING - TO CREAT BACKGROUND /LIGHT BOX SCREEN
    sym.$('#'+videoID).get(0).addEventListener('playing', function () {
    sym.getSymbol("backscreen_Ch5").$("backscreen").show();
    sym.getSymbol("backscreen_Ch5").play("play");
    EVENT LISTENER FOR ENDED - TO PLAY NEXT VIDEO IN SERIES
    sym.$('#'+videoID).get(0).addEventListener('ended', function () {
    //code to play next video

  • Can't get on internet.. PLEASE HELP!!

     I thought I was computer savvy and told a friend at work that has an issue with her internet that I could fix it. I am having more trouble than I thought. She told me it was a Windows 7 and it is a Dell Windows XP Professional service pack 3. I am not
    very familiar with them. 
    She told me that she had uninstalled some programs she felt were slowing her computer down and now her wireless is not working the light is not on, the switch is on but when I go into network adapters all there is, is a 1394 Net Adapter and a Broadcom NetXtreme
    and it acts like it needs a cable plugged in to get online when she has never had to use a cable before. I can not find anywhere where there is wireless settings or anything.
    Someone please help, this lady is super nice and I would hate to let her down. I have the computer here with me now and if anyone could help I would appreciate is so much

    I think you are confusing the connection to your AirPort as being the same thing as a connection to the internet. The fact that you are connecting to the AirPort is great, but you can get a legitimate DHCP address and full signal strength even if the AirPort is completely disconnected from your cable/DSL modem.
    1) Crack open AirPort Admin Utility and click the "Internet" tab. What address does the AirPort have? Hopefully not one that starts with 169. Tell us what you have for IP addrss, subnet, router and DNS (even if the DNS are any greyed out).
    2) In the Utility folder crack open Network Utility and ping this: 64.142.120.111 the address for just-ping.com. They won't mind! Do you get dropped packets or does the ping return? If the packets are dropped, then your AirPort has no connection to the net. If the packets successfully return, then your IP connection is good, but you have no DNS service.
    3) Open Safari, enter 64.142.120.111 into the address field. Does it resolve to just-ping.com? Again, if it does, then your connection is good, but you have no DNS service. If it times out, then the internet connection is NFG.
    Let us know!

  • Can't get passed this install problem - Please help Adobe.

    I've downloaded the TRIAL version of PRODUCTION PREMIUM CS6. Once running / installed and tested it I will purchase it.
    But cannot get past this ERROR problem.
    Here is my install ERROR log ADOBE..  Please help.
    URGENT.
    Exit Code: 6
    Please see specific errors and warnings below for troubleshooting. For example,  ERROR: DF027, DW063 ...
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 4 error(s), 0 warning(s)
    ----------- Payload: {9124DF4E-617D-486B-A970-8FA632244F24} Adobe Photoshop CS6 Core 13.0.0.0 -----------
    ERROR: DF027: Unable to copy file from "/private/tmp/.tempdir6Qpuljrb/Assets1/Application/Adobe Photoshop CS6.app/Contents/Resources/PS_LevelsIcon.icns" to "/Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Resources/PS_LevelsIcon.icns" (Seq 1205)
    ERROR: DW063: Command ARKCopyFileCommand failed.(Seq 1205)
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - Adobe Photoshop CS6 English Language Pack_AdobePhotoshop13-en_US: Install failed
    ERROR: DW050:  - Adobe Photoshop CS6 Core: Failed due to Language Pack installation failure

    You can try resolving your issue using following document :
    http://helpx.adobe.com/creative-suite/kb/error-exit-6-exit-7.html
    and
    http://helpx.adobe.com/creative-suite/kb/error-unable-copy-file-tmp.html
    Regards,
    Sharath Holla.

  • I can not get my iTunes to work, please help

    ok when i click to open itunes, i get the window asking me whether or not I agree to the Itunes software license agreement. I click agree and then i get an error message stating that "The itunes application could not be opened. An unknown error occured [-48].
    Can somebody please help me or if anyone even knows a number i could call for support regarding itunes, i would greatly appriciate that.
    Thank you

    Do you have a valid payment method entered in your account? If yes then contact iTunes.
    Contact iTunes

  • BlackBerry z10 can't get access to mobile network, please help!

    Hi, i got my unlocked z10 a few days ago and still i can't get access to mobile network. Only wifi have worked for me till now.. i used the same sim card as my old phone (where i i got access fine). I've tried rebooting and switched every setting on and off etc. Could any one please help me with this..

    Since you are using the same sim I suggest you contact your service provider to check your provisioning.
    Let me know if this help.

  • Can not get my iphone to work please help

    i done every thing to get my iphone to work with straight talk please help me i need a phone i have bad health famiy members

    https://discussions.apple.com/message/23872549#23872549

  • Can't get back my Apple ID, please help.

    Hello,
    Yesterday, like everyone else, I wanted to sync my account to iCloud, the thing is my Apple ID wasn't verified, and whatever I did, I couldn't send a "Verify mail" via the https://appleid.apple.com/ site. So after searching here and there, I read that what you needed to enter a new apple ID, verify it, and then change it back to the prior Apple ID, The first part worked (of course...) but now for some reason I cannot go back to my original Apple ID, when I try to save it, the screen just load, refreshes like nothing changed...
    Could someone please help me?
    Thank you.
    Jharryone

    Click here, explain to them that you can't call, and see what they say.
    (120676)

  • I have a new MacBook Air and I set my password the other night and forget what I selected. Now I can't start using the computer because I can't get through password gates! Please help!!

    I have a new MacBook Air. I set my password the other night when I was half asleep and can't remember it. Im still working on my old MacBook Air and can't get through the password gate on my new one. How can I reset it on that computer? I can't even get to the internet.
    Thanks!

    Boot to the Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Select Terminal from the Utilities menu. At the Terminal prompt enter:
    resetpassword
    Press RETURN. You will get a GUI in which you can reset your password.

  • Airport connected but can't get internet....PLEASE HELP!!!

    I am a college student who went to college and used an apple airport base station for my mbp and everything worked fine, and before i went to school i used my parents linksys wireless router and it all worked fine. i came home from college today and used the internet (over the linksys router) for about 5 minutes, then came back a few hours later. after i came back my computer said i was connected via airport to the linksys router but i cant load any page at all with any internet browser, also aim and msn messenger wont work. when i get on the internet i get this message "safari can’t open the page “http://www.yahoo.com/”. The error was: “lost network connection” (NSURLErrorDomain:-1005) Please choose Report Bug to Apple from the Safari menu, note the error number, and describe what you did before you saw this message." i can connect if i plug my mbp in and i have tried the network diagnostics for airport several times, and it comes back saying that i am connected and it is all working fine, but its not. any help would be great. thanks.

    I have the same problem...New MacBook Pro connects fine to Airport at home. Shows connected to WPA network at work but no Internet connectivity - or it takes a VERY long time to pull anything up. Have run the Network Diagnostics successfully and Mac thinks it is connected, but still not able to reach web sites.
    Have followed instructions here: Article ID: 106799 Mac OS: Long Delay Before Web Pages Start to Load, Then Load Suddenly at Normal Speed without success. Can hardwire my MacBook Pro and use the network in this way.
    I am a network admin and I set-up the wireless so I am familiar with the details, but am truly baffled why my Mac will not connect to the Internet.

  • Apple deleted every single thing on my phone. How can I get this stuff back? Please help me.

    So I plugged my phone to the computer to add new music, and then Apple said it needed to do an update. So I did. And then when my phone turns back on, pictures and stuff are gone up to a certain date (which must be when I last did a back up. The strange thing is I had some stuff storaged in the Cloud (which is really hard to use) and it was also deleted.
    Someone please tell me what to do and how to get my stuff back.
    Thank you.

    Restore your latest backup. If you connect the phone to your computer via USB, click on its name in iTunes, you can see the date of the latest computer backup and the latest iCloud backup.

  • I mistakely restore my ipod touch and i lost my contacts and notes. How can i get my notes back. Please help me those notes were very important to me.

    Hello guys, hope u all r fine but im in trouble. I mistakely restore my ipod touch and then i lost my important notes and contacts. I need to get it back so i need you guys to help me out. Hope if anyone can help me out. Please.

    Have you tied restoring from backup?  If you go to the Devices tab in iTunes' Preferences, does the date of the backup correspond to before you had you problem?

  • Can't get email notifications to stop - please help!

    I'm posting this message per instructions for "How do I stop receiving email notifications from Adobe Forums?" at  http://forums.adobe.com/thread/416458?tstart=0
    I have followed the instructions dated June 30, 2010, gone to "MyStuff  and followed all the steps in both  Email Notifications and Preferences. I'm supposed to attach a screenshot of the Email Notifications tab after step five, which would prove to you that I have indeed checked the radio buttons to "NO", but I can't do that because you have disable attachments. Please be assured that I have done as you say though - they both say NO!
    As for the second request - the reply-to address from one of the email notifications, it's this:
    [email protected]
    Can you PLEASE PLEASE PLEASE stop the notifications from coming? You may disable my Adobe account if necessary.

    I'm aware that I had two sign-ons, but the trouble is, or was, that the first one (ebmeyer1) stopped working.
    It is in the midst of the recent Acrobat 8.2.4 update fiasco, and I needed HELP. I was able to post in the relevant thread, but thereafter, whenever I tried to sign on again I got caught in an endless redirect loop after entering my password. I was desperate, so I created a second sign on in order to participate. That worked for awhile, then it too gave the same result - and endless redirect upon password entry.
    I was able to participate in THIS thread by pasting in the URL from one of the Acrobat issue email notifications, sent to the second account, into Safari. Only in Safari would the password go through, and only for the second account - not the first.
    Now tonight - for a split second - the first account started working again - this time in Firefox. NOW I was able to get to the settings for ebmeyer1 and make the necessary changes. (Thanks for the article!)
    I hope to gawd this works. The "Contact Adobe" help page gives no hint of where to write for a situation like this - where accounts suddenly seem to crap out on you. All they do is tell you to sign on. What the hell do you do when you CAN'T??????
    Thanks to all of you for your responses.  Once I close this browser window I may never be able to sign on again  :-(

Maybe you are looking for