Can I put an Excel sheet on my iPad and iPhone and update it ?

Hi
I'm fairly new to Mac computers.
We have a new Imac OS X Version 10.7.4 and we also have an Ipad 2 OS X Version 5.1.1
I have an Iphone 4S.
My question is can I put a Word Excel sheet from my main computer onto my Ipad and Iphone and update them when away from home.
I would then want to sync the updated work back onto the main computer when i return home.
Is that possible ?
Many thanks
T_M_G

Welcome to the Apple community.
You can upload some types of Excel spreadsheets to the cloud using the iWork feature on the iCloud.com website, by dragging and dropping from your computer desktop.
Once in the cloud, the document will be converted to a numbers document when opened on an iOS device, where you can make changes and save the document back to the cloud. When you come to require the document on your computer again, you will be able to download it from the iCloud.com website in one of three formats (numbers, Excel, PDF).

Similar Messages

  • How can I get an excel spreadsheet onto the iPad and make changes to it?  I need this for a meeting this afternoon.

    How can I get an excel spreadsheet onto the iPad and make changes to it during my meeting this afternoon?

    I just bought splashtop, you have to have your home computer online,and download the pc version.  I have used it ot watch movies and to "go to work" on my ipad.  It controls the desktop through the ipad.  Whiteboard by splashtop does that and more and is on sale.  The education director at the hospital I work at is using that one.
    Splashtop 4.99 remote desktop(or laptop) control. Whiteboard 9.99 is remote control and more 9.99
    Julie

  • Modify excel sheet from BDN/GOS and add to sales order

    Hello,
    Iu2019ve import a excel-template in OAOR (BDN) and now i want to modify the excel-sheet with my own data.
    After then I want to put it to a Sales Order (BUS2032).
    The excel sheet must indicated in the attachment list of VA02 (GOS).
    Which method I must use to copy a existing excel sheet from BDN?
    How can i modify my excel sheet from BDS and add to a existing sales order?
    Can I set the document write protected?
    Can anyone help me or have any examplesu2026
    Thanks in advance
    Edited by: Thomas Druetschel on Dec 2, 2008 3:20 PM

    Hello,
    now i can get a template from BDN and modify the excel sheet. But i want to modify the excel spreadsheet in BACKGROUND ==> have anybody a idea?
    And i need the correct method to save the modified document to BDS...
    Thanks
    i use the following code:
    TYPE-POOLS: sbdst.
    DATA go_control TYPE REF TO i_oi_container_control.
    DATA go_docking_container TYPE REF TO cl_gui_docking_container.
    DATA go_document_proxy TYPE REF TO i_oi_document_proxy.
    DATA go_excel_iface TYPE REF TO i_oi_spreadsheet.
    DATA go_error TYPE REF TO i_oi_error.
    DATA gc_exceltype TYPE soi_document_type VALUE soi_doctype_excel_sheet.
    DATA gv_retcode TYPE soi_ret_string.
    DATA gv_sheetname TYPE soi_string.
    DATA gv_inplace TYPE c.
    DATA: gv_value TYPE string.
    START-OF-SELECTION.
      PERFORM open_excel_doc_from_bds
                  USING
                      'BUS2032'
                      'BO'
                      '0010163117'
      PERFORM fill_cell
                  USING
                      'TEST123'
                      '1'
                      '2'.
    ==>> Now i want to SAVE the modified Excel Spreadshet to another Sales Order...
    *&      Form  init_excel_proxy
          text
         -->UV_INPLACE text
    FORM init_excel_proxy USING uv_inplace TYPE c.
      DATA lv_repid TYPE sy-repid.
      DATA lv_dynnr TYPE sy-dynnr.
      DATA lv_str   TYPE soi_string.
      lv_repid = sy-repid.
      lv_dynnr = sy-dynnr.
      CALL METHOD c_oi_container_control_creator=>get_container_control
        IMPORTING
          control = go_control
          error   = go_error.
      CREATE OBJECT go_docking_container
        EXPORTING
          repid     = lv_repid
          dynnr     = lv_dynnr
          side      = cl_gui_docking_container=>dock_at_bottom
          extension = 0.
    I don´t want to modify the document in the front*
      CALL METHOD go_control->init_control
        EXPORTING
          r3_application_name = ' '
          inplace_enabled     = uv_inplace
          parent              = go_docking_container
        IMPORTING
          error               = go_error.
      CALL METHOD go_control->get_document_proxy
        EXPORTING
          document_type  = gc_exceltype
        IMPORTING
          document_proxy = go_document_proxy.
    ENDFORM.                    " init_excel_iface
    *&      Form  open_excel_doc_from_bds
          text
         -->UV_CLASSNAME  text
         -->UV_CLASSTYPE  text
         -->UV_OBJECTKEY  text
         -->UV_INPLACE    text
    FORM open_excel_doc_from_bds USING uv_classname TYPE sbdst_classname
                                       uv_classtype TYPE sbdst_classtype
                                       uv_objectkey TYPE sbdst_object_key
                                       uv_inplace TYPE c.
      DATA lt_doc_uris TYPE sbdst_uri.
      DATA ls_doc_uri LIKE LINE OF lt_doc_uris.
      DATA lt_doc_signature TYPE sbdst_signature.
      DATA lv_doc_url TYPE bapiuri-uri.
      DATA lv_repid TYPE sy-repid.
      DATA lv_dynnr TYPE sy-dynnr.
      IF go_document_proxy IS INITIAL.
        PERFORM init_excel_proxy USING uv_inplace.
      ENDIF.
      CHECK NOT go_document_proxy IS INITIAL.
      CALL METHOD cl_bds_document_set=>get_with_url
        EXPORTING
          classname       = uv_classname
          classtype       = uv_classtype
          object_key      = uv_objectkey
        CHANGING
          uris            = lt_doc_uris[]
          signature       = lt_doc_signature[]
        EXCEPTIONS
          nothing_found   = 1
          error_kpro      = 2
          internal_error  = 3
          parameter_error = 4
          not_authorized  = 5
          not_allowed     = 6.
      IF sy-subrc NE 0 .
        MESSAGE 'cl_bds_document_set=>get_with_url error' TYPE 'I'.
        EXIT.
      ENDIF.
      READ TABLE lt_doc_uris INTO ls_doc_uri INDEX 1.
      lv_doc_url = ls_doc_uri-uri.
      CALL METHOD go_document_proxy->open_document
        EXPORTING
          document_url  = lv_doc_url
          open_inplace  = uv_inplace
          open_readonly = ''
        IMPORTING
          error         = go_error.
      IF NOT go_excel_iface IS INITIAL.
        FREE go_excel_iface.
      ENDIF.
      CALL METHOD go_document_proxy->get_spreadsheet_interface
        EXPORTING
          no_flush        = 'X'
        IMPORTING
          sheet_interface = go_excel_iface
          error           = go_error.
    ENDFORM.                    "open_excel_doc_from_bds
    *&      Form  fill_cell
          text
         -->UV_VALUE   text
         -->UV_COLUMN  text
         -->UV_ROW     text
    FORM fill_cell USING uv_value TYPE string
                         uv_column TYPE i
                         uv_row TYPE i.
      CHECK NOT go_document_proxy IS INITIAL.
      CHECK NOT go_excel_iface IS INITIAL.
      DATA: lt_ranges TYPE soi_range_list,
            lt_contents TYPE soi_generic_table,
            ls_contents LIKE LINE OF lt_contents[],
            lt_rangesdef TYPE soi_dimension_table,
            ls_rangesdef LIKE LINE OF lt_rangesdef.
      ls_rangesdef-row = uv_row.
      ls_rangesdef-column = uv_column.
      ls_rangesdef-rows = 1.
      ls_rangesdef-columns = 1.
      APPEND ls_rangesdef TO lt_rangesdef.
      ls_contents-row = 1.
      ls_contents-column = 1.
      ls_contents-value = uv_value.
      APPEND ls_contents TO lt_contents.
      CALL METHOD go_excel_iface->set_ranges_data
        EXPORTING
          ranges    = lt_ranges[]
          contents  = lt_contents[]
          rangesdef = lt_rangesdef[]
          no_flush  = 'X'
        IMPORTING
          error     = go_error.
    ENDFORM.                    "fill_cell
    *&      Form  get_cell
          text
         -->UV_COLUMN  text
         -->UV_ROW     text
         -->CV_VALUE   text
    FORM get_cell USING  uv_column TYPE i
                         uv_row TYPE i
                  CHANGING cv_value.
      DATA: lt_ranges TYPE soi_range_list,
          lt_contents TYPE soi_generic_table,
          ls_contents LIKE LINE OF lt_contents[],
          lt_rangesdef TYPE soi_dimension_table,
          ls_rangesdef LIKE LINE OF lt_rangesdef.
      ls_rangesdef-row = uv_row.
      ls_rangesdef-column = uv_column .
      ls_rangesdef-rows = 1.
      ls_rangesdef-columns = 1.
      APPEND ls_rangesdef TO lt_rangesdef.
      CALL METHOD go_excel_iface->get_ranges_data
        EXPORTING
          rangesdef = lt_rangesdef[]
        IMPORTING
          contents  = lt_contents[]
          error     = go_error
        CHANGING
          ranges    = lt_ranges[].
      cv_value = space.
      READ TABLE lt_contents INTO ls_contents INDEX 1.
      IF sy-subrc = 0.
        cv_value = ls_contents-value.
      ENDIF.
    ENDFORM.                    "get_cell
    *&      Form  insert_table
          text
         -->COLUMN     text
         -->ROW        text
         -->CT_DATA    text
         -->ANY        text
    FORM insert_table USING column TYPE i
                            row TYPE i
                      CHANGING ct_data TYPE table any.
      CHECK NOT go_document_proxy IS INITIAL.
      CHECK NOT go_excel_iface IS INITIAL.
      CALL METHOD go_excel_iface->insert_range_dim
        EXPORTING
          name     = 'Table'
          top      = row
          left     = column
          rows     = 1
          columns  = 1
          no_flush = 'X'
        IMPORTING
          error    = go_error.
      DATA: lt_fields_table TYPE soi_fields_table.
      CALL FUNCTION 'DP_GET_FIELDS_FROM_TABLE'
        TABLES
          data   = ct_data[]
          fields = lt_fields_table.
      go_excel_iface->insert_one_table(
        EXPORTING
          data_table   = ct_data[]
          fields_table = lt_fields_table[]
          rangename    = 'Table'
          no_flush     = 'X'
          wholetable   = 'X'
        IMPORTING
          error        = go_error
    ENDFORM.                    "insert_table=

  • I have about 130 gigs of movies on my iTunes and was wondering if I can just put them on my backup hard drive and remove them from my main computer to free up the space

    I have about 130 gigs of movies on my iTunes and was wondering if I can just put them on my backup hard drive and remove them from my main computer to free up the space.

    I haven't done this with an external drive, but I would imagine it works the same way as if you have multiple internal drives.  Also hopefully it works with less headache in OSX than in windows.
    Anyway, move all your music over to your external, and then go into itunes -> preferences -> advanced -> iTunes media folder location.  Navigate to your drive, and pick the folder you want.  Ensure that your folders are set up like they are in your ~/Music/iTunes folder, or wherever your iTunes is currently pointing.  Then quit and restart itunes.  If your music doesn't show up, try dragging your music folder from your external onto itunes, and it will hopefully update your library.xml.
    As far as Jerry's problem goes, you could try adding another music folder to your library.xml, but I really have no idea whether this will work or not.  If you want to give it a try (can't promise you won't corrupt your library.xml, so make a copy beforehand) you can find the music folder xml element right near the top of the xml file (open it with textedit/textmate/whatever text editor you want (NOT WORD)).  Curious to know if this works, and if it doesn't I have other ideas so let me know.

  • As a grand parent, how can I put some apps on an ipod touch and then give it as a gift?

    As a grand parent, how can I put some apps on an ipod touch and then give it as a gift?

    Apps and many other purchases are tied to the iTunes Store account via which they were purchased. So if you buy the app, that app is tied to your iTunes Store account. Without that account information, the child could not update the app nor back it up.
    I'd also suggest giving the child an iTunes gift card or gift certificate along with the iPod. If the child is too young to have and manage his or her own iTunes Store account, then his or her parent could set up an iTunes Store account to purchase the apps. That could be done with that gift card and not need a credit card. You can also gift specific apps, though again that would require the child or a parent to open an iTunes Store account through which to redeem the gift. For more information on gift options, see:
    http://support.apple.com/kb/HT2736
    Regards.
    Message was edited by: Dave Sawyer

  • TS1702 can I put my music from itunes onto my girlfriends iphone using my itunes account?

    Can I put my music from itunes onto my girlfriends iphone using my itunes account?

    No, that's considered stealing.

  • How can i put a submit button in a survey and it send to my email

    how can i put a submit button in a survey and it send to my email?

    Hi williamm89908146,
    You need to open the form in which you want to put the submit button,
    then you have to choose 'Add new field' under Tasks pane on the right Hand side of the window.
    Choose 'Ok' Button
    Place the button at desired Location
    Change the field name to 'Submit'
    Click on 'All Properties' (Button Properties window Will open up)
    Click on Actions Tab and then on 'Select Action:'
    Choose 'Open a web Link' from the Drop Down Menu and then Click 'Add'
    another window will appear in which you have to type this:    mailto:[your email address], eg: mailto:[email protected] later click close
    Click Close Form editing on the right hand side of the window
    Clicking on the Button would open up your default email client and your address would appear in 'To' field.
    Please feel free if you face any challenges in following through these steps.
    Regards,
    Rahul

  • Can I print Photo contact sheets from my ipad? If so how?

               Can I print Photo contact sheets from my ipad? If so how?

    if you screen shot the contact you can........

  • Can I put Microsoft Internet explorer on my ipad mini?

    Can I put Microsoft Internet explorer on my ipad mini ?

    No. Microsoft Internet Explorer runs on Windows based devices, There is no version for Apple Devices.
    The iPad comes with Safari as its default browser.
    There are also alternative browsers in the App Store liike Chrome, Opera among many others.
    Perhaps one of those may work for you.

  • Can you put a DVD in your MacBook Pro and watch it on Apple TV?

    Can you put a DVD in your MacBook Pro and watch it on Apple TV?

    You can use AirPlay to display your MacBook screen on the Apple TV, but that depends on your MacBook - About AirPlay Mirroring in OS X Mountain Lion

  • How can I put a flash player on my ipad

    How can I put a flash player on my iPad mini with display

    Can I get and Vorizon on my iPad mini with display?

  • Can I put an older version of GarageBand onto my iphone classic?

    I have upgraded to iphone 4S and have a purchased garageband app.  (Love it)
    My older iphone classic (now used as an ipod music player / games for the kids) will not accept the app due to version conflict.
    Can I put a previous version of GarageBand onto my iphone classic?
    Thanks!

    Thanks for the help, I appreciate it.  I'm not looking to replace my current operating system, because I primarily need to work out of 10.7.  I just need the older version (basically dual boot, choose which operating system I want at startup) to occassionally play the games that are not supported in 10.7.  Actually, I had heard of lots of people doing this but the responses were all over the place and I was hoping to get a concise thought of what will work for my specific scenario. 
    Unfortunately borrowing my mother's computer is not  an option as she lives miles  from me and I would never know when I have the time or want to play.  Anyone who has played Diablo or Warcraft can sympathize, my mom would never see her computer again if I needed it to play these games. 
    Thanks again.  I might try the external drive scenario, but was just hoping to be able to dual boot into 10.6 directly with the hard drive(s) in the computer because my USB and firewire ports are all taken with lots of other equipment (I'm a graphic/web designer so have 2 printers, wacom tablet, external backup, 2 large die cut machines and so much more already plugged in).  I'm pretty tapped out on ports without using a hub and I don't like the way they work (too many years in technology knowing that direct connect is the best way to go).

  • Can i get my rented movies off my ipad and put them on my PC, as i do not have posession of my ipad and i wont for awhile, also can i change the password remotely for my ipad to avoid intrusions?

    can i get my rented movies off my ipad and onto my PC without my ipad in my possession? also can i change my password to access my ipad remotely to stop the intrusions?

    Where did the movies come from?
    For what you said you should be easily be able to do what you want except for:
    "remove them from the ipad but still have access to them for viewing on the road or at hotel"
    Home sharing only works wehn the devices are connected to the same network
    Understanding Home Sharing
    If they are iTunes purchases, you should be able to redownload most iTunes purchases on the road if you have an internet connection by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • HT1203 Can I share one iTunes account for my iPad and two I phones? If so, how can I get the purchased apps and music on all three devices? Do I need a home computer,

    Can I share one iTunes account for my iPad and two I phones? If so, how can I get the purchased apps and music on all three devices? How do I sync all the devices to have the same music and apps?

    You can set up an iCloud account on each one (the SAME iCloud account using the same AppleID on each) and then sync via iCloud.
    http://support.apple.com/kb/HT5262\
    However, an iCloud backup nor sync contains purchased content - that is available for redownload from the iTunes and App stores (so no need to waste iCloud space storing it for you).
    So, for purchased content, you will have to download it on each device - just use the same AppleID and download each item on each device.
    Without a computer to aid the sync'ing, downloading the purchased content on each device is the only way.
    P.S  audiobooks cannot be re-downloaded once purchased (all other content can be), so without a computer to save, store and move the audiobook files around, you will only be able to put those on one device - the one you first purchase it on.

  • I have 3 mail accounts in apple mail. One of them has had the spinning ball going for several days and I cannot receive mail in this account. I can receive mail in this account on my iPad and by signing into aol on safari. It's obviously a glitch in Apple

    I have 3 mail accounts in apple mail. One of them has had the spinning ball going for several days and I cannot receive mail in this account or delete messages etc. For some  reason, I CAN send mail on Apple mail using this account, although it takes several minutes. I can receive mail in this account on my iPad and by signing into aol on safari and internet explorer on my office PC. It's obviously a glitch in Apple's Mail. I've deleted this account and reopened it in Mail on my Mac Pro with no difference. Any suggestions would be greatly appreciated, this E amil account is major to my business.

    http://support.apple.com/kb/TS3276
    sounds like a corrupt database or index
    the glitch is your home folder and mail folder, esp look at syncservices
    I'd post in the mail or Lion forum where you will find similar issues being discussed.
    http://www.apple.com/support/mail

Maybe you are looking for

  • Re: How to download an internal table to application server.. Unicode

    Hi.. i have populated an internal table of a big structure (custom table) which has more than 100 fields. i wanted to download it into the application server.. as a tab de-limited file.. Can anyone guide me how to proceed with Thanks In Advance Guhap

  • BUG - Error when deploying to 10.1.3 AS Preview 4 on Linux

    I am using JDeveloper 10.1.3 EA on a Windows machine and am deploying to Oracle Application Server 10g 10.1.3 Preview 4 on a Linux box. I'm deploying an ADF Struts web project that is having troubles displaying my sceens. When I try to view any one o

  • Mail after Mountain Lion upgrade cannot receive

    Hi. When I upgraded to mountain lion I had the same issue obviously alot of people were having were as in Mail I could recieve mail but not send. I spent most of yesterdat playing around with port numbers and SSL etc etc to no luck in getting it to s

  • Just learning - issue with switching images

    I have two photos that are fairly identical. The same four people in both images. In one image, one party has eyes shut, in the other image, eyes open but one of the other folks has turned their head. I can't find the tutorial (video preferred) as to

  • How do I stream my photos when I have attempted everything in the book

    The HDMI cables are properly connected on both TV sets equipped with ATV. All functions are working except for the photo streaming. The homesharing instructions have been tried and retried on all devices. Although I have 16000 pics, this quantity sho