How do I edit or enter values on multiple sheets at the same time in Numbers?  I can do this Excel but don't know procedure in Numbers.  Thanks.

How do I edit or enter values on multiple sheets at the same time in Numbers?  I can do it in Excel but I don't the procedure in Numbers.  Thank you!

The only I way I can think of to modify a single value and have that value change in multipl locations is to have all "the other places" reference a single cell.  There is not way without a referene to modify a set of cells simulateously.
This may be something like what you want:
Enter a value in the table "Original Data" cell A1 and the A1 cells of tables Ref1, Ref2 and Ref2-1 will change

Similar Messages

  • How do you apply a master page to multiple documents at the same time?

    How do you apply a master page to multiple documents at the same time?

    Hi friends,
    Thank you for trying to help me out.
    Let me explain it a bit to remove the ambiguity.
    I have 10 documents nested under a book. Each of these documents have 'n' number of pages. I want to apply my custom made master page "First" to the first page of all these 10 documents in one go. The remaining pages of the documents have to be in default "Right" master page format. How will I do it?
    I tried selecting all the documents and importing the formats from another document with the custom made "First" master page. The master page format is getting imported but the first page of all the documents still remain with the default "Right" master page format.
    I think now my question is more clear...

  • How do I mirror from windows PC to multiple ipads at the same time?

    Work in a band.  Band uses a Windows 7 PC and I need to mirror that screen to at least two, and up to four, ipad screens for other band members.  The ipads only need to mirror the PC screen.  They do not need to have any control or influence over the PC - just observation.  Currently run AirDisplay to connect one ipad but need to connect multiple now.
    Air Display doesn't work - won't connect multiple devices from PC and one of the Ipads is a first generation and doesn't use Air Display
    IDisplay doesn't work - doesn't mirror from a PC, only extends
    PLEASE help!  So frustrating.  I know there must be a way!

    Was a solution found?
    Is there any Program/App that will allow mirroring a Windows 7 PC screen to one iPad wirelessly but without allowing the iPad to control the PC....just view?

  • How can i print multiple sheets at the same time

    im trying to print multiple sheets out of a particular folder in numbers.  Cant i just select all and print?  When I try to the message that appears is that there is an error printing

    If I guess correctly, you are trying to print thru a printer icon installed on the Desktop.
    At last on my machine, iWork applications aren't compatible with this scheme.
    Here is a script which may be useful.
    --{code}
    --[SCRIPT print_iWork]
    Enregistrer le script en tant qu'application : print_iWork.app
    sur le bureau
    Glisser déposer des icônes de documents iWork sur celle du script pour imprimer ceux-ci.
    --=====
    Save the script as an Application : print_iWork.app
    Drag & Drop icons of iWork documents on the script's icon to print them.
    Yvan KOENIG (VALLAURIS, France)
    2011/05/08
    --=====
    on open (sel)
      local les_documents, un_doc, doc_ID, theApp, nom_du_doc
      my activateGUIscripting()
      set les_documents to sel
      repeat with un_doc in les_documents
      tell application "System Events"
      set doc_ID to type identifier of disk item (un_doc as text)
      end tell
      if doc_ID is in {"com.apple.iwork.pages.pages", "com.apple.iwork.pages.sffpages"} then
      set theApp to "Pages"
      else if doc_ID is in {"com.apple.iwork.numbers.numbers", "com.apple.iwork.numbers.sffnumbers"} then
      set theApp to "Numbers"
      else if doc_ID is in {"com.apple.iwork.keynote.key", "com.apple.iwork.keynote.sffkey"} then
      set theApp to "Keynote"
      else
      set theApp to ""
      end if
      if theApp is not "" then
      tell application theApp
      open un_doc
      set nom_du_doc to name of document 1
      end tell
      my raccourci(theApp, "p", "c")
      my raccourci(theApp, return, "")
      delay 1
      tell application theApp
      close document nom_du_doc without saving
      end tell
      end if
      end repeat
    end open
    --=====
    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}

  • How to support multiple users at the same time?

    Hi all,
    I have a Labview software which controls a analyzer via GPIB connector. When user A is using the software, user B has to wait until A is done. But actually, the analyzer is not very busy, when user A is using the software.
    I want user A, B, C and D can use the software at the same time. just like we can open Multiple websites at the same time.
    How can I program the software, so that the software can be open multiple times? Do you have any example?
    Thanks a lot.
    Steven
    Solved!
    Go to Solution.

    Are all the users going to be measuring the exact same thing from the same instrument?
    It would be possible to write a separate instrument server application that would handle all the direct interactions with the instrument. When one of the users needed to access the instrument, they would gain access to it through this server.
    The big, Big, BIG caveat is that each interaction with the instrument would need to be atomic. In other words each access would need to configure the instrument, initiate the reading, report the results, and then reset the instrument back to some known default value.
    As Dennis said, not a trivial process, but probably do-able...
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • How to display multiple reports at the same time

    Hi,
    I'm trying to display multiple reports at the same time, each one in separates tabs or windows using Forms 11g 11.1.1.6
    I have a button which has a call to a procedure which makes use of rp2rro library to show the specific reports, for example:
    call_report('report1');
    call_report('report2');
    call_report('report3');
    call_report('report4');
    The main problem is that, just the last report is been displayed.
    Is there some way to display report1, report2 etc in separate tabs or windows ??
    Regards
    Carlos

    You shouldn't have a problem calling different reports at once. As long as you're using Forms 11g they show up in different windows.
    The question is how you are calling the report.
    Here is how I manipulate it.
    After I pass parameters with the ADD_PARAMETER built-in I set some key values (destype, desformat, desname) with the RP2RRO's procedures.
    Finally calling RP2RRO.RP2RRO_RUN_PRODUCT and then WEB.SHOW_DOCUMENT passing the correct procedure parameters the report comes up in a window. If you repeat the above changing the appropriate variables (the report_name in the RP2RRO_RUN_PRODUCT and so on) you can get multiple reports in different windows.

  • How can I install one app on multiple iPads at the same time?

    We have a volume purchasing account, but when purchasing an app we get multiple serial numbers that all seem to need to be entered individually. The iPhone config Utility will not sync multiple iPads at the same time. Am I missing something? This cannot be the method for mass deployment, it seem too complicated.

    You can do a  backup of you iPad then restore the backup to many devices.
    How to use multiple iPods, iPads, or iPhones with one computer
    http://support.apple.com/kb/HT1495
    Mobile Device Management Solutions for iOS
    http://www.apple.com/iphone/business/integration/mdm/
    http://www.apple.com/ipad/business/resources/
    "iOS mobile device management (MDM)
    With an unmatched breadth of features, a Self Service console forover-the-air (OTA) distribution of in-house and app store apps, and integration with Apple's Volume Purchase Plan (VPP), the Casper Suiteallows administrators to easily achieve the four major tenets of iOSmobile device management: Inventory, Configuration, Security Management, and App Distribution."
    http://jamfsoftware.com/products/casper-suite/

  • How do I apply same adjustments to multiple photos at the same time?

    How do I apply same adjustments to multiple photos at the same time?

    You can't but you can copy the adjustments made on one photo and apply/paste it onto another by:
    1 - Control (right)-clicking one the edited photo in the Edit mode and selecting Copy Adjustsments
    2 - Control-clicking on the next photo and selecting Paste Adjustments.
    OT

  • Value to multiple sprites through the same parameter

    I'm going to ask the same question "
    "contains" doubt in hexadecimal color value?" but in a
    different way, because I figured out that the solution is simpler
    that I thought, and the solutions goes by other way. I have this
    behavior:
    property pTargetSprite, pBlendValue
    on getPropertyDescriptionList me
    list = [:]
    addProp list, #pTargetSprite, [#comment: "Target Sprite:",\
    #format: #integer, #default: VOID]
    addProp list, #pBlendValue, [#comment: "Blend Value:",\
    #format: #integer, #default: 100]
    return list
    end
    on mouseDown me
    sprite(pTargetSprite).blend = pBlendValue
    end
    I would like to enter MULTIPLE sprites for 1 parameter, that
    is to say when the dialog box of the behavior appears and ask me
    the "Target Sprite:", I would like to input ...let's say 1 , 2 , 3
    , ... whatever numbers I want. Therefore, the blend values of that
    sprites will change according to the input Blend Value. Right Now
    is working perfect, but of course with only ONE sprite, but I want
    to be able to assign that Blend Value to multiple sprites over the
    same parameter.
    I guess it must be very simple, but I cannot get the answer
    anywhere in my brain, nor my director book, nor in the forums.
    Thanks!!!

    You have several options here. You can do as you suggest,
    create a list
    of the sprite numbers to change and then tell each of those
    sprite's
    blend value to change.
    Another method is to write a function in the behavior that
    you attach to
    each sprite and then use sendAllSprites() to fire each of
    those
    functions. If you are attaching behaviors to each sprite this
    may be the
    way to go.
    For method 1, you could amend your behavior like this:
    property spriteList
    property blendValue
    on getPropertyDescriptionlist
    myPropList = [:]
    myPropList.addProp(#spriteList,[#comment:"enter the sprite
    channel
    numbers to use, separated by
    commas:",#format:#integer,#default:"1,2,3"])
    myPropList.addProp(#blendValue, [#comment: "Blend Value:",\
    #format: #integer, #default: 100])
    return myPropList
    end
    on beginSprite me
    spriteList = stringToList(spriteList)
    end
    on stringToList(thisString)
    oldDelim = the itemDelimiter
    the itemDelimiter = ","
    thisManyItems = thisString.item.count
    tempList = []
    repeat with n = 1 to thisManyItems
    tempList.add(thisString.item[n])
    end repeat
    the itemDelimiter = oldDelim
    return tempList
    end
    on mouseUp me
    thisMany = spriteList.count
    repeat with n = 1 to thisMany
    sprite(n).blend = blendValue
    end repeat
    end
    for method 2 you could use something like this in each
    sprite's behavior:
    property blendValue
    property thisSprite
    on getPropertyDescriptionlist
    myPropList = [:]
    myPropList.addProp(#blendValue, [#comment: "Blend Value:",\
    #format: #integer, #default: 100])
    return myPropList
    end
    on beginSprite me
    thisSprite = me.spriteNum
    end
    on changeValue me
    sprite(thisSprite).blend = blendValue
    end
    and then you can call this second method from a mouse event:
    on mouseUp me
    sendAllSprites(#changeValue)
    end
    and every sprite that contains that function in the frame
    where it is
    called will execute.
    Rob
    Rob Dillon
    Adobe Community Expert
    http://www.ddg-designs.com
    412-243-9119
    http://www.macromedia.com/software/trial/

  • HT3529 How to delete multiple messages at the same time?

    I'm new with and IPhone I try to delete multiple messages at the same time. and I can't find how to do this.

    Email messages? Tap the edit button...tap each message you want to delete...hit delete...once in trash, tap edit, then tap delete all.

  • How do you take off reseiving messages on multiple devices using the same apple account

    How do you take off reseiving messages on multiple devices using the same apple account?

    Go to Settings>Messages>Send and Receive on all but one device and add a unique email address on each device and delete the commone Apple ID email device
    If there is also an iPhone with iOS 6 associated with the Apple ID, uncheck the phone number on all but the phone.

  • In Elements 7.0, how can I delete multiple photos at the same time?

    In Adobe Photoshop Elements 7.0, how can I delete multiple photos at the same time?   Please be a little specific so I can follow your instructions as I'm not real smart at computers; I'm an intermediate user.  Thank you.

    Shift-click the photos or Ctrl-click them to select them, then right-click one of them and choose Delete from Catalog. They will all go together.

  • How  to fade groups of images or multiple images at the same time?

    I am creating a flash infographic, and want to fade images I have imported from Illustrator that are grouped. I would like to know how  to fade these groups and multiple images at the same time.
    Thanks!

    Use TweenMax for this.
    the syntax is like this:
    var arrayOfDisplayObjects:Array = new Array();
    //with arrayOfDisplayObjects.push(DisplayObject)
    //you can put any DisplayObject in the Array and when you want to fade them call this
    TweenMax.allTo(arrayOfDisplayObjects,1, { autoAlpha:0} );
    //to fade them in 1 second to alpha=0 and when reaching the zero make them invisible (to save processing power)

  • How to use multiple proxies at the same time?

    im planning to use multiple proxies at the same time on mac but i have no idea how to do it?!. i need help!thanks!

  • How can I get rid of multiple pictures at the same time?

    how can I get rid of multiple pictures at the same time?

    Adobe Bridge, lightroom and your file browser (windows explorer or Mac Finder) can select multiple pictures at once and then delete. If you are looking for more than that for information, you will need to be more specific at what your doing, what OS you have, and version of software your using. If necessary post screen shots so we can see what your doing. The more information we have the more detailed of an explaination can can give back to you.

Maybe you are looking for