What does "undo change workspace" mean

I am doing spreadsheet in numbers and things have gone awry and I need to undo some things......Edit shows "unfo change workspace" but when I used that recently some very strange things happened.   Should it get rid of just the last change and can I then keep clicking it to keep changing?
Thank you.

The menu item "Edit > Undo X"
where X is the last change you made... changes depending on the sequence of actions and changes.
I am not certain what the "Workspace" in Numbers.

Similar Messages

  • What does the revert option mean when you hook an ipod touch up to the to itunes

    what does the revert option mean when you hook an ipod touch up to the to itunes?

    It means you changed some settings for how your iPod interacts with iTunes, you can either click Apply to confirm the changes, or Revert to undo them. This does not delete any content.

  • What does (error code -600) mean?

    What does (error code -600) mean?
    I received this code in a pop up window while trying to open iTunes from my Apps folder.

      procNotFound             
    = -600, /*no eligible process with specified descriptor*/
    Could be many things, we should start with this...
    "Try Disk Utility
    1. Insert the Mac OS X Install disc, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu at top of the screen. (In Mac OS X 10.4 or later, you must select your language first.)
    *Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.*
    3. Click the First Aid tab.
    4. Select your Mac OS X volume.
    5. Click Repair Disk, (not Repair Permissions). Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then try a Safe Boot, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes.
    (Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.)
    If perchance you can't find your install Disc, at least try it from the Safe Boot part onward.
    Any change?

  • What does "extracted channel PDF" mean and why does it continually duplicate on my desktop?  I think it happens when I move a file in Finder to another file and when I copy some web files.  How do I avoid this on my Mac (Mavericks)?  Thanks for your help!

    What does "extracted channel PDF" mean and why does it continually duplicate on my desktop?  I think it happens when I move a file in Finder to another file and when I copy some web files.  I have to immediately move to trash all the duplications on my desktop.  How do I avoid this on my Mac (Mavericks)?  Thanks for your help!

    What application is set to open PDF files? If you CNTRL click on the file and open with Preview does the problem occur?
    If not change the default application to open PDF files to Preview.
    You can do this by highlighting the file and either use CMD i or Get Info , this will open a window with the info on the file with an option to change the application that opens the file.
    That's all I can think of.

  • I understand that when using Numbers/Pages - an up-arrow on a document means that the file is still to be uploaded to the cloud, what does a down arrow mean? It seems the document can't be accessed until the arrow clears.

    I understand that when using Numbers/Pages - an up-arrow on a document means that the file is still to be uploaded to the cloud, what does a down arrow mean? It seems the document can't be accessed until the arrow clears.

    I believe what it's supposed to mean is that some changes were made to the document on another device, and those changes were saved back to the cloud.  Now you've opened iWork on a different device to access that document - it compares the document you've got locally with the one in the could, sees some recent changes and downloads them.
    What gets me is why this sometimes happens even when I've not made any changes to a document from another device.

  • What does the dotted circle mean?

    When connecting itouch to itunes, what does the dotted circle mean next to a song? Thanks for the help.

    Hi pfn,
    From an earlier post on this topic - this may work for you - it's worth a try:
    First go to the 'On This iPad/iPod/iPhone' section and note all the tracks that have dotted circles.
    In the 'Music' section, un-check/de-select all the tunes noted 
    Apply and sync the changes. 
    Once that completes re-check/re-select the same tunes just un-checked/de-selected in the 'Music' section.
    Apply and sync the changes again
    Go back into the 'On This iPad/iPod/iPhone' section
    Hopefully all the dotted circles will be gone and all the tracks can be played
    See if this helps!
    Cheers,
    GB

  • What does where 1=1 mean in sql code

    I am going throough someones sql code and they have used where 1=1 in alot of places what is this for... it doesnt make sense to me...

    "create table emp1 as select * from emp where 1=1"
    While your statement that this will create a copy of the emp table is true, the predicate is meaningless.
    CREATE TABLE emp1 AS
    SELECT * FROM empwill do the exact same thing with less typing.
    Puppethead
    The same argument applies to your use of the predicate in development. WHERE 1 = 1 does not change the meaning of the query, no matter how many other predicates you add or remove from the query. The result of the query will be governed by the meaningful predicates in the WHERE clause.
    WHERE 1 = 1 is noise, and is ignored by the optimizer.
    SQL> EXPLAIN PLAN SET statement_id = 'john' for
      2  SELECT COUNT(*) FROM demographic
      3  WHERE patient_first_name = 'JOHN';
    Explained.
    SQL> SELECT plan_table_output
      2  FROM TABLE(dbms_xplan.display('plan_table','john','serial'));
    PLAN_TABLE_OUTPUT
    | Id  | Operation            |  Name        | Rows  | Bytes | Cost  |
    |   0 | SELECT STATEMENT     |              |     1 |    17 |  1969 |
    |   1 |  SORT AGGREGATE      |              |     1 |    17 |       |
    |*  2 |   TABLE ACCESS FULL  | DEMOGRAPHIC  |  1547 | 26299 |  1969 |
    Predicate Information (identified by operation id):
    PLAN_TABLE_OUTPUT
       2 - filter("DEMOGRAPHIC"."PATIENT_FIRST_NAME"='JOHN')
    Note: cpu costing is offNote that explain plan reports that it used the predicate as a filter during the full scan. Now, 1 = 1:
    SQL> EXPLAIN PLAN SET statement_id = 'johna' for
      2  SELECT COUNT(*) FROM demographic
      3  WHERE 1 = 1;
    Explained.
    SQL> SELECT plan_table_output
      2  FROM TABLE(dbms_xplan.display('plan_table','johna','serial'));
    PLAN_TABLE_OUTPUT
    | Id  | Operation             |  Name          | Rows  | Bytes | Cost  |
    |   0 | SELECT STATEMENT      |                |     1 |       |   119 |
    |   1 |  SORT AGGREGATE       |                |     1 |       |       |
    |   2 |   INDEX FAST FULL SCAN| DEMOGRAPHIC_4  |   154K|       |   119 |
    Note: cpu costing is offNote that there is no predicate used. Even combining both, I still get only one predicate evaluated:
    SQL> EXPLAIN PLAN SET statement_id = 'johnb' for
      2  SELECT COUNT(*) FROM demographic
      3  WHERE patient_first_name = 'JOHN' and
      4        1 = 1;
    Explained.
    SQL> SELECT plan_table_output
      2  FROM TABLE(dbms_xplan.display('plan_table','johnb','serial'));
    PLAN_TABLE_OUTPUT
    | Id  | Operation            |  Name        | Rows  | Bytes | Cost  |
    |   0 | SELECT STATEMENT     |              |     1 |    17 |  1969 |
    |   1 |  SORT AGGREGATE      |              |     1 |    17 |       |
    |*  2 |   TABLE ACCESS FULL  | DEMOGRAPHIC  |  1547 | 26299 |  1969 |
    Predicate Information (identified by operation id):
    PLAN_TABLE_OUTPUT
       2 - filter("DEMOGRAPHIC"."PATIENT_FIRST_NAME"='JOHN')
    Note: cpu costing is offJohn

  • What does this error message mean?  MFMessageErrorDomain error 1028.

    What does this error message mean? 
    MFMessageErrorDomain error 1028.
    I can't seem to delete a message from my mailbox.  The above error message comes up every time and the message then reappears in my inbox.

    Back up all data. Rebuild the mailbox. Try to delete the message again. If you still can't, continue.
    From the Mail menu bar, select
    Mail > Preferences > Accounts > Advanced
    From the menu labeled
    Keep copies of messages for offline viewing
    choose
    Don't keep copies of any messages
    Close the window and save the change. Relaunch Mail and test.

  • HT4972 What does network settings incorrect mean when updating?

    What does network settings incorrect mean when updating?

    Felipe,
    Thanks for the reply.  I was able to get it working by changing my access list from:
    ip access-list extended outside_to_inside
    permit tcp any any eq 8222
    permit tcp any eq 8222 any
    permit tcp any any eq 22
    permit tcp any eq 22 any
    to:
    ip access-list extended outside_to_inside
    permit tcp any host 192.168.10.10 eq 22
    Thanks for your help.
    Paul

  • What does passed by value mean?

    On one of my recent tests on methods I had a true or false question that stated:
    Some variables can be passed by value, and the answer was true. But what does passing by values mean?
    Message was edited by:
    rght191

    any changes made to the copied reference willbe
    reflected in the original object.
    any changes made to the object that the copiedreference refers to,
    will be reflected in the 'original' object...because its the same object.
    Yo, RadcliffePike:
    You actually quoted my reply before yours.
    I don't mean to nit-pick but did you say anything
    different or am I missing something?You said "changes to the copied reference". You meant
    "changes to the object the copied reference refers
    too". Just a slight difference...And the whole point, really.

  • What does "Accept changes" button do when I press it?

    I want to know what does "Accept changes" button do when I press it. I would to "accept changes" or "change the shopping cart" after one or more items are rejected by the approver.
    Somebody knows what is the first function module, report or program which is executed after the button "Accept changes" is clicked?
    Thanks

    This is means, you don't want to resubmit your rejected items for approval.
    Regards, IA

  • I got an iphone from Hong Kong which is locked one. Can anyone explain me what does a locked iphone means. How do I use it in India now, with my own sim card. How do I unlock it???

    I got an iphone from Hong Kong which is locked one. Can anyone explain me what does a locked iphone means. How do I use it in India now, with my own sim card. How do I unlock it???

    If your iPhone is locked to a wireless provider, only that wireless provider
    can unlock it. Contact the wireless provider in Hong Kong to see if they
    offer unlocking and if you qualify.
    If your iPhone is locked to an AppleID that you do not know, return it for
    a refund as it is useless. Only the person whose AppleID was used for
    activation can remove the lock. There is no workaround for Activation Lock.
    If neither of the above is what you are facing, provide more detail so someone
    may offer a solution.

  • I was playing with my ipad settings (it's an older model) and noted in the advanced settings of Safari there was a place to view website databases.  When I clicked on this I saw websites.  How do these get there and what does the space amount mean?

    I was playing with my ipad settings and noted in he advanced settings of Safari there was a place to view "website databases".  When I selected this I saw a multitude of websites.
    Can anyone tell me how these get there?  Can a website be posted even if it was never went to?  What does the space amount mean?  For example, 1.5 kb...is this quite a bit?  Would it indicate someone has gone to a site multiple times?
    I share my ipad with my teenage daughter and I'm trying to find out if she's lying to me.  Obviously she's swearing that she has "no idea" how these got there and I'm trying to keep her safe (she's only 14).
    Thanks everyone.
    Concerned Mom

    Think of your PC and the 'temporary internet folder' where it keeps cached copies of web pages or elements off a web page for 'quicker display the next time you visit'. That's pretty much what that folder is. 1.5K is tiny. Probably just a basic page with some text on it. (you might be confusing 1.5K with 1.5 megabyte....megabyte is large...it's roughly 1000 kilobytes, so the 1.5K is a tiny file)
    As far as I know, the only way info gets into that folder is if the browser has been to that site.
    if you have a concern there are browsers out there, McGruff is one i've seen recommended, that allow some degree of parental control and supervision. That or you could passcode lock the iPad or enable the restrictions to turn off some parts of the device to have some control.

  • I have many photos that are visible as thumbnails in the Pictures Library, however when I try to open them in a big screen they show a back screen with an exclamation mark in a triangle.  What does this exclamation mark mean ?

    I can see my images in the libarary as thumbnails but when i try to edit/email some of them become Exclamation Marks in a triangle.
    What does the exclamation mark mean and how to i retrieve the photo

    The exclamation make is an indication that iPhoto has broken the file path to the original photo.
    Make a temporary, backup copy (if you don't already have a backup copy) of the library and apply the two fixes below in order as needed:
    Fix #1
    Launch iPhoto with the Command+Option keys held down and rebuild the library.
    Select the options identified in the screenshot. 
    Fix #2
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    Download iPhoto Library Manager and launch.
    Click on the Add Library button, navigate to your Home/Pictures folder and select your iPhoto Library folder.
    Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File ➙ Rebuild Library menu option
    In the next  window name the new library and select the location you want it to be placed.
    Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments but not books, calendars or slideshows. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    OT

  • What does "on my mac' mean and how do i delete or reduce the number of items in there?

    What does "on my mac" mean and how do i delete or reduce the number?

    Hi ya
    I'm seeing this on my email screen, on the left hand side - under the "RSS Apple".  The number of items in there is now 752.  It's preventing me from sending and receiving emails in my AOL account.
    Any  help would be deeply appreciated.
    Thank you.

Maybe you are looking for