Is it possible to import the total from one worksheet to appear in a cell in another worksheet?

Is it possible to import the total from one worksheet into another separate worksheet?

In Numbers terminology a File (of document) contains sheets.  Sheets contain tables, and graphic elements (circles, text, lines, charts, etc.).
So...
if you are asking if you can reference a cell of a table in another table in the same sheet: yes
if you are asking if you can reference a cell of a table in another sheet: yes
if you are asking if you can reference a cell of a table in another sheet of another document: no

Similar Messages

  • Could anyone tell me if it is possible to import the information from the Palm Pilot agenda and address book to some programs of the Iphone and Iphone?

    Could anyone tell me if it is possible to import the information from the Palm Pilot agenda and address book to some programs of the Iphone and Iphone?

    Look to your right under "More Like This" for related discussions. ----------------->

  • Is it possible to send the parameter from one appli. to other applic

    Hi
    I want to send the parameter from one application say applcation1 to application2.Both applications are running on same server.
    Can you suggest any solution provided by sun

    Few of solutions are like
    writing the parameter to xml file or inserting the parameter in database which are common resources to both.I want some other way to solve the same.

  • Is it possible to import the iPhone from the US to the UK?

    Hey,
    Is it possible to import an iPhone 3GS from the US to the UK, and use it on the O2 network? I don't want to waste my money first!
    Thanks a lot.

    A US phone that is carrier locked to AT&T could not be legally unlocked in the UK. The other issue is the iPhone warranties are locked to the country the phone was purchased in, so if you were able to eventually use it, if you had a problem you would have to get the phone back to the US for service. Kind of a Catch 22 there.

  • How to import the datafiles from one database to another

    Hi,
    I have got some datafiles from the existing database(Consider it as Database A), but it has been removed as of now.
    I am having the datafiles and control files of it.
    I have freshly installed one oracle Database(database B), I am planning to load those datafiles in the newly installed
    database.
    Is it possible, if so wat is the procedure.
    Both the databses are Oracle 11g.
    Help me out of this.
    Thanks.
    Regards
    Gatha

    Hi,
    As you said that you have data files and Control files, then using import quite no possbile, but you need to do it manually (as it exits in the Source System in same path).
    Initially, you copy these files from the Source System to Destination System that is
    Data Files and Control Files
    Next, you will get the DBID from the controlfile backup is you have Example :-
    CTL_SP_BAK_C-1507972899-20070228-00, then " 1507972899" is the DBID,
    Try to use the RMAN for this
    example :-
    Open the rman
    set dbid 1507972899
    then you need to build the initilizaition file to start an instance based on the Configuration
    or Copy the spfile from the back from source system if exits.
    Startup the DB in mount mode.
    You might get the error
    ORA-01078: failure in processing system parameters
    Now restore spfile from 'backup path' where you have copied files
    startup force nomount
    Now the instance is started
    connect to DB as sysdba
    check the control file parameter values and online redo Log files paths (Log_Archive_dest)
    Restore the old control file from backup, since the new instance must the know where the files are located
    restore controlfile from 'backup path'
    then shutdown the DB
    start in mount mode
    restore the DB - restore database
    Note: Recovery is dependent on the available archived (and online) redo logs.
    Final step will be Alter database open resetlogs;
    - Pavan Kumar N

  • Is it possible to use the mask from one image in other images?

    Hello,
    I'm prepping a product shot to send to  a designer. I always create a mask to 'drop out' the background, so that the designer can pull the product into InDesgin without picking up any of the background.
    I would like to send the designer 3-4 versions of the same shot, with small changes to the shadow detail etc., but I would rather not spend the time creating the same mask 3-4 times.
    Is there a way to create a mask on one image, and then copy that mask and place it in the other choices? Its the exact same shot with the exact same crop so each image would be an exact duplicate.
    I realize I could ask him to choose and mask his top choice, but there is a bit of a time crunch here and a few layers of people to make the final selection, so it would make everything I lot smoother if I could simply send him the finished product without creating a lot of back and forth.
    Thanks so much for any help!
    Ellen

    If the images are exactly the same size then make sure the layer with the mask
    is the active layer and in the other documents go to Select>Load Selection and choose
    your document with the layer mask under Source document and under channel choose the layer mask.
    After the selection loads press the layer mask icon at the bottom of the layers panel.
    MTSTUNER

  • Is it possible to get the total value for column and assign to other field

    hi,
    Is it possible to get the total value of particular column and assign that value to another field?
    How to do this?
    Thanks in advance,
    SAN

    Afridi,
    My extended controller class code:
    package xxhr.oracle.apps.per.selfservice.appraisals.webui;
    import oracle.apps.fnd.framework.OAApplicationModule;
    import oracle.apps.fnd.framework.OAException;
    import oracle.apps.fnd.framework.OAViewObject;
    import oracle.apps.fnd.framework.webui.OAPageContext;
    import oracle.apps.fnd.framework.webui.beans.OAWebBean;
    import oracle.apps.fnd.framework.webui.beans.message.OAMessageStyledTextBean;
    import oracle.apps.per.selfservice.appraisals.webui.OverviewPageCO;
    import oracle.jbo.Row;
    public class XXOverviewPageCO extends OverviewPageCO {
    public XXOverviewPageCO() {
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    if(pageContext.getParameter("XXCalcAvgButton")!=null){
    throw new OAException("welcome",OAException.INFORMATION);
    //getSum(pageContext, webBean);
    private String getSum(OAPageContext pageContext, OAWebBean webBean) {
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    OAViewObject ratvo = (OAViewObject)am.findViewObject("CompetenceElementsVO");
    OAViewObject valuevo = (OAViewObject)am.findViewObject("PerRatingLevelsVO");
    Integer Sum = new Integer("0");
    int numofRows = ratvo.getRowCount();
    for (int x = 0; x < numofRows; x++) {
    Object Rating =
    ratvo.getRowAtRangeIndex(x).getAttribute("ProficiencyLevelId");
    if(Rating!=null) {
    int numofRowsforvalue = valuevo.getRowCount();
    for(int i=0;i<numofRowsforvalue;i++){
    if(valuevo.getRowAtRangeIndex(i).getAttribute("RatingLevelId").equals(Rating)){
    Object StepValue=valuevo.getRowAtRangeIndex(i).getAttribute("StepValue");
    Sum = new Integer(StepValue.toString()) + Sum;
    OAMessageStyledTextBean displayCompAvg=(OAMessageStyledTextBean)webBean.findChildRecursive("XXCompAvgText");
    displayCompAvg.setValue(pageContext,Sum);
    return null;
    But it is not affecting in the page.
    Can you please tell me what is the problem.

  • How to import the titles from my iPad to iTunes on my PC?

    After all the mess I had with last iTunes update, all content of my mediathek is gone from my PC. Is it possible to import the titles from my iPad to iTunes?

    Follow the steps given here to get your  iPad synced to your new laptop without data loss...
    Syncing to a "New" Computer or replacing a "crashed" Hard Drive

  • Is it possible to import the failure cases from another test plan in MTM ?

    Hi,
    Is it possible to import the failure cases from another test plan? For example, I have created a new test plan with ID 1002. Now I want to import the failure cases from test plan with ID 1001.  Is there anyway to do this?
    Thanks,
    Leslu

    Hi Leslu,
    As far as I know, there isn’t that feature in MTM, but we could achieve that by add test cases to the test suite.
    As we know, the test case is associated to the test suite, remove the test case from the test suite won’t delete the test case, it just remove the relationship.
    So, we could base on the test cases’ id to add the test cases to a test suite of another test plan.
    The condition is:
    Work Item Type In Group Test Case Category
    ID In id1,id2 (e.g. 1,2,)
    Regards
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Is it possible to download iOS  5 from one iMac and not get them totally wiped of apps and stuff. We have an iPad each and a communal email address and an iCloud address each. One iPad now is totally screwed up.

    Is it possible to download iOS  5 from one iMac on two ipads and not get them totally wiped of apps and stuff. We have an iPad each and a communal email address and an iCloud address each. One iPad now is totally screwed up.

    Thank you for your reply.
    I am somewhat new to iOS and OS having grown up with DOS and Windows. I am not familiar with IMAP and iCloud and I am not even sure which types of servers my various emails use.
    The problem I would anticipate with iCloud is that (I assume) it would limit my access to data (including mail) on the iCloud to when I happen to be logged onto the internet. I also assume(?) that large files (photos etc.) would require some time to download whenever I wish to access them from whichever device I happen to be using (I hope I am wrong about this).
    I have kept my devices to 500gb - 1TB for OS and 32gb - 128gb for iOS but since I have pretty slow WiFi (shared with DirecTV Whole Home and Netflix streaming) it is my impression that iCloud might be quite limited due to data transfer times.
    Perhaps a factor would be that I have 2 DSL lines and my main DSL line is connected to two wireless routers (to also provide WiFi in a metal building that blocks WiFi and Cellular signals)
    I may be totally wrong in my assumptions regarding iCloud. My mail is not so urgent that I need access to it instantly and I could wait until I had internet access or I can get it on my iPhone. My main concern with iCloud would be my data files (Word, Pages, Excel, Numbers etc.).
    On the other hand, if I wanted to keep my 10,000 emails that would take up a lot of iCloud memory and I don't know how to measure how much storage it would take or how to move Hotmail or even iCloud mail to iCloud.
    It may take me some time to figure this out.

  • Is it Possible to upload the output from Oracle reports To Access database

    Hi All,
    Wish you All a Very Happy New Year.
    I have a query.Is it possible to
    upload the output from the Oracle reports
    to the Access database???
    Any suggestions would be appreciated.
    TIA
    sg

    Hi sg,
    Research the DDE option.
    Dynamic Data Exchange (DDE) is a mechanism by which applications can communicate and exchange data in Windows.
    I have imported data into the excel spreadsheet using DDE built in functions. I am sure it can work with MS Acess as well. If not, then you need to create a 2 step process .. reports -> excel -> access.

  • How to import the photos from the Photos tab in the Photos app in iOS 7?

    I use iPhone 4 with iOS 7. I have done the following steps:
    Connected my iPhone to my Mac.
    Opened iPhoto.
    Clicked on my iPhone in the left sidebar.
    Clicked the blue button, offering to import X photos.
    I chose to delete the photos from my iPhone, when I was prompted at the end of the import.
    However, I noticed the following - there were photos, that was not offered for an import. Now, on my iPhone when I open the Photos app and go to albums my Camera Roll album is empty, but when I go to Photos App -> Photos I see the photos I imported, as well as many many photos that were not imported, but are also not in the Camera Roll album (it's empty, as noted). So:
    1. How do I get the photos from Photos app -> Photos tab?
    2. How do I delete them from there when I have them.
    One more thing - isn't it annoying that one has to delete the same photo from so many places -> Camera Roll Album, My Photo Stream. Photos Tab. I mean - if I take a picture by mistake, shouldn't it be possible to just delete it from one place and never see it again?

    It seems I was wrong. I just had missed seeing the photos in iPhoto. Sorry for the confusion.

  • Is it possible to show the comments from Excel spreedsheets in Numbers?

    Is it possible to show the comments from Excel spreedsheets in Numbers? And can I create comments in new Numbers spreedsheets like Excel?

    Yes.  You can open excel files with comments and add comments using the menu item "Insert > Comment":
    Numbers will export a file as excel using the menu item "File > Export > Excel...":
    But will not natively save excel files.  So if you will be regularly working with a file in both Numbers and Excel you should consider using only one of the programs as the only way to save a document in Numbers is as a Numbers document.  Said another way Number can only import and export Excel.

  • How can I view my iCalendar on Google mail? Is it possible to import the iCalendar into the Google calendar? If so, how?

    Is it possible to import the iCalendar into the Google calendar? If so, how?

    You can certainly add your google calendar to your iPad: http://support.google.com/calendar/bin/answer.py?hl=en&answer=151674
    This will allow you to sync calendars back and forth between your iPad and Google.
    However you cannot import already existing calendars on iPad into Google from the iPad itself. 
    You would need to:
    Sync your iPad with a computer
    And then use the computer to import your calendar to Google: http://support.google.com/calendar/bin/answer.py?hl=en&answer=37118
    If you are using a Mac I can tell you how to sync the calendars to the computer and then put them on google.
    If you are using a Windows machine I would suggest you post your question in the iPad forum where the iPad experts reside: https://discussions.apple.com/community/ipad/using_ipad
    Cheers.

  • Is it possible to import a title from Premiere Pro into AfterEffects?

    Is it possible to import a title from Premiere Pro into AfterEffects?
    AE CS6
    PP CS6
    Thank you,
    Robert

    You can render the title out of Premiere Pro as a movie and bring it into After Effects as a video file. Titles aren't automatically converted when you copy and paste from Premiere Pro to After Effects or use Dynamic Link to send something to After Effects.
    You can submit feature requests here:
    http://www.adobe.com/go/wish

Maybe you are looking for

  • Installation BPEL PM mid-tier flavor beta3 fails during deployment

    During the deployment of applications and adapters "E:\as10g101\jdk\bin\java -Dant.home=E:\as10g101 (CONNECT_DATA=(SERVICE_NAME=oi10g))) -quiet -e -buildfile bpminstall.xml init-midtier Inserting OPMN fragment ... BUILD FAILED E:\as10g101\integration

  • Drag and Drop multiple boxes and snap to multiple locations then reveal button

    Hi I'm Trying to develop a small game where the user chooses from a range of boxes of the left of screen and can drag 3 of them separatley to 3 holding boxes on ther right. each box can be dragged to any location and the order is not important. Once

  • Hard Drive Where?

    Hi Turned on my mac on Saturday and waited an extended period in the boot up to find a little icon of a question mark flashing on a folder. I assumed that this mean that my hard drive is lost somewhere. I inserted the restore CD's (not the originals

  • Change time from number format(ie. 3.50 hours) to regular time format( ie.3:30)

    How do you Change time from number format(ie. 3.50 hours) to regular time format( ie.3:30)

  • IPhone 4.0 Camera Locked Up

    I have taken 6 photos, with and without flash. After the 6th photo the camera has locked up. When I open the camera app it looks like the camera has just taken a picture and the lens is shut. I can pull my camera roll up and access my pictures. I can