OfficeWebApps Excel edit

Hi ,
I've installed and set  officewebapps. word
(view and edit)  working great.
But I'm having problems also excel.
http://.../_layouts/15/WopiFrame.aspx?sourcedoc=/...xlsx&action=edit    or 
http://.../_layouts/15/WopiFrame.aspx?sourcedoc=/...xlsx&action=view 
if I do this setting  SPWOPISuppressionSetting then I can viewing   excel on ../15/xlviewer.aspx?../  page
New-SPWOPISuppressionSetting -Extension "XLSX" -Action "view"   
http://.../_layouts/15/xlviewer.aspx?id=/myexceldocument.xlsx&Source=http//... (I Can view excel)
in this case if edit  excell with officewebbapps take this error : "We're sorry. We ran into a problem completing your request.Please try that again in a few minutes"
http://.../_layouts/15/WopiFrame.aspx?sourcedoc=/...xlsx&action=edit  (in
WopiFrame page  I take error)
or  I Change  action parameter on this  url and I  take the same error.
http://.../_layouts/15/WopiFrame.aspx?sourcedoc=/...xlsx&action=view
2 error filters that may be related  in  ULS log:
A)  "WOPIFrame - Unhandled exception: System.NotSupportedException: Can not create an identity context for system account user token. Exception occurred while creating an SPIdentityContext from SPUserToken.System.NotSupportedException: Can not
create an identity context for system account user token. " 
B) "SPShareByLinkHandler.Initialize : Not a ShareByLink request - missing access token"
This process did not solutions:
1) I recrate Excell service application as on this url (https://technet.microsoft.com/en-us/library/jj219698.aspx)
2)Secure store service AppPool and Excel Service  App Pool  identities   I add to managed accounts on SharePoint
3) I try 3 different metod  for  installation owac
  New-OfficeWebAppsFarm -InternalUrl "https://officewebapps" -ExternalUrl "https://officewebapps2.com" -CertificateName "MyDomain_Wildcard" –EditingEnabled
  (Set-SPWOPIZone –zone “internal-https”  on SharePoint server)
  New-OfficeWebAppsFarm -InternalUrl "https://officewebapps" -ExternalUrl "https://officewebapps2" -EditingEnabled:$true -SSLOffloaded
  (Set-SPWOPIZone –zone “internal-https”  on SharePoint server)
  New-OfficeWebAppsFarm -InternalUrl "http://officewebapps" –AllowHTTP -EditingEnabled
  (Set-SPWOPIZone –zone “internal-http”  on SharePoint server)  
4)DNS defination for "officewebapps" To "my officewebapps server IP"   and  I can  view xml https:// officewebapps/hosting/discovery on any PC
5) New-SPWOPISuppressionSetting -Extension "XLSX" -Action "Edit"   but then  "Edit Document OfficeWebApps"  options not visible. 
    therefore   Remove-SPWOPISuppressionSetting -Extension "XLSX" -Action "Edit" 
But now not workin excel edit :(
Please Help.

Excel documents are opening in Excel Services, not OWA. The 'Suppression setting' is saying that WOPI shouldn't be used for the Excel documents in view mode. Since you hadn't created a similar suppression setting for the Edit mode it fails.
You have issues on your OWA farm, I suggest you have a look there.

Similar Messages

  • Making few columns of excel editable and some readable

    Hi,
    i have a requirment were if we dowload from portal to excel using download to excel functionality, few columns should be editable and few readable. kindly help me to ressolve this issue.

    Hi Noel,
    There is a table in portal whose values i am exporting to excel  using download to excel button.  i want  3 columns of  this excel sheet to be readable and one column editable. how to do that?
    Edited by: AnujaSinha on Aug 26, 2011 7:19 AM
    Edited by: Anja Engelhardt on Aug 29, 2011 9:08 AM
    Be so kind and stay polite. Our community users try to help you. By the way: the question from Noel wasn't that bad. Why do you write the same stuff a second time instead of trying to explain in a better way?
    Anja (Moderator)

  • Export to excel - edit iqy file

    Hi,
    When you export a list you get a iqy file with all the the columns. Is it possible to local save the iqy file and to edit this iqy file so that you can add a column with a formula?
    What I would like to do is, I have a list with ID and the created by column. Now, for this list, we need to have the created by as name + firstname and not firstname + name.
    This is why I need to create a third column. I have the formula that I can use in excel. But how to use it in the iqy file?
    An example of the export would be:
    ID
    Created by
    switch names
    1
    Paul Smith
    Smith Paul
    2
    Jan Owen
    Owen Jan
    3
    An Blake
    Blake An
    Is this possible?

    Sorry, I misunderstood your question. 
    You could still achieve this using a view, but you would need to create an extra column in the SharePoint list (a calculated column) for storing the value of the "name + firstname", and add that column to the view. 
    To my knowledge it isn't possible to create new virtual columns by editing the query file.
    Regards, Matthew
    MCPD | MCITP
    My Blog
    Please remember to click "Mark As Answer" if a post solves your problem or "Vote As Helpful" if it was useful.
    See my webpart on the TechNet Gallery that allows administrative users to upload, crop and format user profile photos. Check it out here:
    Upload and Crop User Profile Photos

  • C# COM server events "lost" when raising events while Excel is in edit mode

    I posted this question on StackOverflow (http://stackoverflow.com/questions/23798443/c-sharp-com-server-events-lost-when-raising-events-while-excel-is-in-edit-mode) but did not receive a good answer, so I'm trying my luck here.
    I have an in-proc COM server written in C# (using .NET Framework 3.5) that raises COM events based on this example: http://msdn.microsoft.com/en-us/library/dd8bf0x3(v=vs.90).aspx
    Excel VBA is the most common client of my COM server.  I’ve found that when I raise COM events while Excel is in edit mode (e.g. a cell is being edited) the event is “lost”.  Meaning, the VBA event handler is never called (even after the Excel
    edit mode is finished) and the call to the C# event delegate passes through and fails silently with no exceptions being thrown.  Do you know how I can detect this situation on my COM server?  Or better still, make the event delegate call block until
    Excel is out of edit mode?
    I have tried:
    Inspecting the properties of the event delegate – could not find any property to indicate that the event failed to be raised on the client.
    Calling the event delegate directly from a worker thread and from the main thread – event not raised on the client, no exceptions thrown on the server.
    Pushing the event delegate onto a worker thread’s Dispatcher and invoking it synchronously – event not raised on the client, no exceptions thrown on the server.
    Pushing the event delegate onto the main thread’s Dispatcher and invoking it synchronously and asynchronously – event not raised on the client, no exceptions thrown on the server.
    Checking the status code of the Dispatcher.BeginInvoke call (using DispatcherOperation.Status) – the status is always ends with “Completed”, and is never in “Aborted” state.
    Creating an out-of-proc C# COM server exe and tested raising the events from there – same result, event handler never called, no exceptions.
    Since I get no indication that the event was not raised on the client, I cannot handle this situation in my code.
    I have tested this with Excel 2010 and Excel 2013.
    Here is a simple test case.  The C# COM server:
    namespace ComServerTest
    public delegate void EventOneDelegate();
    // Interface
    [Guid("2B2C1A74-248D-48B0-ACB0-3EE94223BDD3"), Description("ManagerClass interface")]
    [InterfaceType(ComInterfaceType.InterfaceIsDual)]
    [ComVisible(true)]
    public interface IManagerClass
    [DispId(1), Description("Describes MethodAAA")]
    String MethodAAA(String strValue);
    [DispId(2), Description("Start thread work")]
    String StartThreadWork(String strIn);
    [DispId(3), Description("Stop thread work")]
    String StopThreadWork(String strIn);
    [Guid("596AEB63-33C1-4CFD-8C9F-5BEF17D4C7AC"), Description("Manager events interface")]
    [InterfaceType(ComInterfaceType.InterfaceIsIDispatch)]
    [ComVisible(true)]
    public interface ManagerEvents
    [DispId(1), Description("Event one")]
    void EventOne();
    [Guid("4D0A42CB-A950-4422-A8F0-3A714EBA3EC7"), Description("ManagerClass implementation")]
    [ComVisible(true), ClassInterface(ClassInterfaceType.None)]
    [ComSourceInterfaces(typeof(ManagerEvents))]
    public class ManagerClass : IManagerClass
    private event EventOneDelegate EventOne;
    private System.Threading.Thread m_workerThread;
    private bool m_doWork;
    private System.Windows.Threading.Dispatcher MainThreadDispatcher = null;
    public ManagerClass()
    // Assumes this is created on the main thread
    MainThreadDispatcher = System.Windows.Threading.Dispatcher.CurrentDispatcher;
    m_doWork = false;
    m_workerThread = new System.Threading.Thread(DoThreadWork);
    // Simple thread that raises an event every few seconds
    private void DoThreadWork()
    DateTime dtStart = DateTime.Now;
    TimeSpan fiveSecs = new TimeSpan(0, 0, 5);
    while (m_doWork)
    if ((DateTime.Now - dtStart) > fiveSecs)
    System.Diagnostics.Debug.Print("Raising event...");
    try
    if (EventOne != null)
    // Tried calling the event delegate directly
    EventOne();
    // Tried synchronously invoking the event delegate from the main thread's dispatcher
    MainThreadDispatcher.Invoke(EventOne, new object[] { });
    // Tried asynchronously invoking the event delegate from the main thread's dispatcher
    System.Windows.Threading.DispatcherOperation dispOp = MainThreadDispatcher.BeginInvoke(EventOne, new object[] { });
    // Tried synchronously invoking the event delegate from the worker thread's dispatcher.
    // Asynchronously invoking the event delegate from the worker thread's dispatcher did not work regardless of whether Excel is in edit mode or not.
    System.Windows.Threading.Dispatcher.CurrentDispatcher.Invoke(EventOne, new object[] { });
    catch (System.Exception ex)
    // No exceptions were thrown when attempting to raise the event when Excel is in edit mode
    System.Diagnostics.Debug.Print(ex.ToString());
    dtStart = DateTime.Now;
    // Method should be called from the main thread
    [ComVisible(true), Description("Implements MethodAAA")]
    public String MethodAAA(String strValue)
    if (EventOne != null)
    try
    // Tried calling the event delegate directly
    EventOne();
    // Tried asynchronously invoking the event delegate from the main thread's dispatcher
    System.Windows.Threading.DispatcherOperation dispOp = System.Windows.Threading.Dispatcher.CurrentDispatcher.BeginInvoke(EventOne, new object[] { });
    // Tried synchronously invoking the event delegate from the main thread's dispatcher
    System.Windows.Threading.Dispatcher.CurrentDispatcher.Invoke(EventOne, new object[] { });
    catch (System.Exception ex)
    // No exceptions were thrown when attempting to raise the event when Excel is in edit mode
    System.Diagnostics.Debug.Print(ex.ToString());
    return "";
    return "";
    [ComVisible(true), Description("Start thread work")]
    public String StartThreadWork(String strIn)
    m_doWork = true;
    m_workerThread.Start();
    return "";
    [ComVisible(true), Description("Stop thread work")]
    public String StopThreadWork(String strIn)
    m_doWork = false;
    m_workerThread.Join();
    return "";
    I register it using regasm:
    %SystemRoot%\Microsoft.NET\Framework\v2.0.50727\regasm /codebase ComServerTest.dll /tlb:ComServerTest.tlb
    Excel VBA client code:
    Public WithEvents managerObj As ComServerTest.ManagerClass
    Public g_nCounter As Long
    Sub TestEventsFromWorkerThread()
    Set managerObj = New ComServerTest.ManagerClass
    Dim dtStart As Date
    dtStart = DateTime.Now
    g_nCounter = 0
    Debug.Print "Start"
    ' Starts the worker thread which will raise the EventOne event every few seconds
    managerObj.StartThreadWork ""
    Do While True
    DoEvents
    ' Loop for 20 secs
    If ((DateTime.Now - dtStart) * 24 * 60 * 60) > 20 Then
    ' Stops the worker thread
    managerObj.StopThreadWork ""
    Exit Do
    End If
    Loop
    Debug.Print "Done"
    End Sub
    Sub TestEventFromMainThread()
    Set managerObj = New ComServerTest.ManagerClass
    Debug.Print "Start"
    ' This call will raise the EventOne event
    managerObj.MethodAAA ""
    Debug.Print "Done"
    End Sub
    ' EventOne handler
    Private Sub managerObj_EventOne()
    Debug.Print "EventOne " & g_nCounter
    g_nCounter = g_nCounter + 1
    End Sub
    This problem also occurs for a C++ MFC Automation server that raises COM events.  If I raise the COM event from the main thread when Excel is in edit mode, the event handler is never called.  No errors or exceptions are thrown on the server,
    similar to my C# COM server.  However, if I use the Global Interface Table to marshal the event sink interface from the main thread
    back to the main thread, then invoking the event - it will block while Excel is in edit mode.  (I also used COleMessageFilter to disable the busy dialog and not responding dialogs, otherwise I'd receive the exception:
    RPC_E_CANTCALLOUT_INEXTERNALCALL It is illegal to call out while inside message filter.)
    Knowing that, I tried to do the same on my C# COM server.  I could instantiate the Global Interface Table (using the definition from pinvoke.net) and the message filter (using the IOleMessageFilter definition from MSDN).  However, the event still
    gets "lost" and does not block while Excel is in edit mode.
    Here's my additional C# code to try to make use of the Global Interface Table:
    namespace ComServerTest
    // Global Interface Table definition from pinvoke.net
    ComImport,
    InterfaceType(ComInterfaceType.InterfaceIsIUnknown),
    Guid("00000146-0000-0000-C000-000000000046")
    interface IGlobalInterfaceTable
    uint RegisterInterfaceInGlobal(
    [MarshalAs(UnmanagedType.IUnknown)] object pUnk,
    [In] ref Guid riid);
    void RevokeInterfaceFromGlobal(uint dwCookie);
    [return: MarshalAs(UnmanagedType.IUnknown)]
    object GetInterfaceFromGlobal(uint dwCookie, [In] ref Guid riid);
    ComImport,
    Guid("00000323-0000-0000-C000-000000000046") // CLSID_StdGlobalInterfaceTable
    class StdGlobalInterfaceTable /* : IGlobalInterfaceTable */
    public class ManagerClass : IManagerClass
    //...skipped code already mentioned in earlier sample above...
    //...also skipped the message filter code for brevity...
    private Guid IID_IDispatch = new Guid("00020400-0000-0000-C000-000000000046");
    private IGlobalInterfaceTable m_GIT = null;
    public ManagerClass()
    //...skipped code already mentioned in earlier sample above...
    m_GIT = (IGlobalInterfaceTable)new StdGlobalInterfaceTable();
    public void FireEventOne()
    // Using the GIT to marshal the (event?) interface from the main thread back to the main thread (like the MFC Automation server).
    // Should we be marshalling the ManagerEvents interface pointer instead? How do we get at it?
    uint uCookie = m_GIT.RegisterInterfaceInGlobal(this, ref IID_IDispatch);
    ManagerClass mgr = (ManagerClass)m_GIT.GetInterfaceFromGlobal(uCookie, ref IID_IDispatch);
    mgr.EventOne(); // when Excel is in edit mode, event handler is never called and does not block, event is "lost"
    m_GIT.RevokeInterfaceFromGlobal(uCookie);
    I’d like my C# COM server to behave in a similar way to the MFC Automation server.  Is this possible?  I think I should be registering the ManagerEvents interface pointer in the GIT but I don't know how to get at it? I tried using Marshal.GetComInterfaceForObject(this,
    typeof(ManagerEvents)) but that just throws an exception: System.InvalidCastException: Specified cast is not valid.
    Thanks.

    Hi Jason-F,
    I’ve found that when I raise COM events while Excel is in edit mode (e.g. a cell is being edited) the event is “lost”.  Meaning,
    the VBA event handler is never called (even after the Excel edit mode is finished) and the call to the C# event delegate passes through and fails silently with no exceptions being thrown.
    Do you mean you didn't raise EventOne event? EventOne handler like following?
    ' EventOne handler
    Private Sub managerObj_EventOne()
    Debug.Print "EventOne " & g_nCounter
    g_nCounter = g_nCounter + 1
    End Sub
    After test your code, here is my screenshot
    And here is my execute log in C# ComServerTest.
    ManagerClass1/1/2015 5:48:11 PM
    DoThreadWork()1/1/2015 5:48:12 PM
    ManagerClass_EventOne()1/1/2015 5:48:17 PM
    ManagerClass_EventOne()1/1/2015 5:48:22 PM
    ManagerClass_EventOne()1/1/2015 5:48:27 PM
    ManagerClass_EventOne()1/1/2015 5:48:32 PM
    ManagerClass_EventOne()1/1/2015 5:48:37 PM
    ManagerClass_EventOne()1/1/2015 5:48:42 PM
    ManagerClass1/1/2015 5:49:56 PM
    DoThreadWork()1/1/2015 5:49:56 PM
    ManagerClass_EventOne()1/1/2015 5:50:01 PM
    ManagerClass1/1/2015 5:50:04 PM
    If i misunderstand you, please feel free to let me know.
    Best regards,
    kristin
    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.

  • Document became corrupted after any editing and saving it using Excel

    I have quite a simple document which can be opened by Excel, edited, but after saving became corrupted (no longer possible to open it on the same PC). I tried editing on copies of this document on 3 different PC's with the same result - so the problem is
    in a document, but why Excel behaves in a such unfriendly way? If document is initially corrupted it should not be possible to spent time on editing it and then lost all the work done together with a document itself....
    The document is shared there: https://drive.google.com/file/d/0B1nYSke1KSW0RVlEbmJlSE5IUzA/edit?usp=sharing

    Hi,
    Which Excel version are you using? Based on my tested in my environment (Excel 2013&Windows8.1 and Excel 2010& Windows 7), I can re-open the file which your shared after editing/saving it.
    Do the three PCs have the same Excel version and operation environment? If the issue only occur in this file and the other file work well, I recommend we copy all of the content to the new/blank file to test.
    If you got the error message like: The file is corrupt and cannot be opened", please try the following methods:
    1. Open Excel 
    2. Click on File > Options.
    3. Select Trust Center > Trust center settings.
    4. Select Protected view.
    5. Uncheck all the options under Protected View > OK.
    6. Restart Excel and try to open Excel documents.
    If the issue occurs in all files with three different PCs, I recommend we repair Office programs.
    George Zhao
    TechNet Community Support

  • How do you cut and paste tables in and out of Excel from either Mail.app or Outlook 2011?

    When I try to cut and paste a table generated in Excel for Mac into the body of an email the formatting holds but when I send the table is reduced to one column. Same is true for copying from incoming mail into Excel, when I paste into Excel it is reduced to one column rather than keeping the table format. I have tried using mail.app and went out and Outlook 2011 and both programs have the same issue. The reformatting also happens when I forward an email received from a coworker that contains a table, not just on cut and paste operations.
    I need to do this regularly and right now my only option is using my old PC where the cut and paste function keeps formatting between Excel and Outlook just fine. Attaching a pdf or excel file is not an option. There has to be a way to maintain the formatting and being able to extract the tables keeping them intact. Please let me know if you have a solution to maintain this formatting within email programs. Thank you in advance.

    Selecting all does not help - the issue is I need a table within an incoming email to be moved to excel, edited and then pasted back into a new email. "Select All" picks up the email headers, signatures, any messages around the table etc so that doesn't work. Also, as pointed out above Excel doesn't have a select all feature to get the tables back into the body of an email.
    I just tried again going from Excel into Outlook 2011. No luck. All one column down the left side of the email. All columns are removed and text crammed into one column. Just to check I cut from one Excel document and pasted into another and it retained all formating just fine. It is only in and out of Outlook that seems to be the issue.

  • Password protected excel files in Sharepoint 2013

    We have an issue with excel sheets. After editing and saving, the tags on the document disappear.
    Basically one of my members uploaded the document. On first upload, she input the tags on it, and when she opened and editted and saved it, the tags disappear and also an error message came at the top.
    Please note that there is a macro and a password on the document.
    Please help !
    Regards,
    prajK

    Hi Prajk,
    I tried to reproduce the issue per the steps below, let me know if there is misunderstanding:
    Create an Excel file with Password.
    Upload the Excel file.
    Select the file and add tags.
    Click the Excel file, it says with Password enabled, I can only open it with Excel client application. So I open it with Excel, edit it and save again.
    Select the file and click Tags and Notes, the tag is there.
    I wonder if the issue can be reproduced on other Excel documents by her account. If you add a tag to the document item, does the issue still occur?
    Regards,
    Rebecca Tu
    TechNet Community Support

  • Export actuals to / import actuals from Excel, ID, GUID, xlsx

    Hi all,
    I'd like to do the following:
    Export tasks to Excel
    Edit the actuals in the Excel file
    reimport the changed tasks to Project
    I used the wizard saving the the data to an excel file
    After updating the fields 'actaul start', '% completed' I opened the excel file and used the wizard again, using following options:
    merge the data into the active project 
    tasks, import included headers
    set merge key = ID
    merging is ok
    set merge key = GUID
    the tasks are imported as new tasks in the existing project
    We want to be shure that the import doesn't put actuals into wrong tasks, even when in the original project new tasks were created. Thats why we need to use the GUID, not the ID.
    Does somebody know this issue?
    Shure, I can use a user defined field, but how can the key inserted automatically, something like a key creater?
    Peter
    p.s. tried Project 2010/2013, Excel export/import Format xlsx, xls, english, german versions

    Glad that you find by yourself the trick. I've come to the same conclusion.
    Thank you to have kept us informed.
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, P-Seller |

  • Opening Winmail.dat files in Mail on iPad (Ms Windows Word, Excel, Ppt)

    I thought I'd share my findings on what to do if your Word, Excel, Powerpoint attachments come into your Mail as winmail.dat files. In my experience I downloaded the following Apps:
      Pages
      Numbers
      DocsToGo
    WinMailViewer
      Letter Opener
    To open the winmail.dat file hold the icon until asked how you want to open the file: WinMailViewer or Letter Opener (assuming you've previously downloaded both Apps).
    WinMailViewer is exactly what it says ... a 'viewer' of the file.  The file is sent to the relevant App which you subsequently open to see a list of the files.
    Letter Opener will bring up the attachment(s) in a separate window and gives you choices on which App you'd like to use to open or view the file with. Depending on what Apps you've previously downloaded:
      For Excel it might list: Quick Look, DocsToGo, Csv File Editor, PDFReaderLite
      For Word, it might list: Pages, DocsToGo, PDFReaderLite
    DocsToGo is an excellent option for working on Word, Excel files (N.B. If you have a big Excel file with 'frozen' window panes, I recommend clicking on the 4th tool (bottom toolbar) UnFreezing the panes while you work or move around the file as I haven't figured how to work with it on!!)
    Pages is the best option to use for editing Word files.
    Numbers is probably the best option to use for editing Excel files.
    Csv File Editor is another Excel editing option.
    I hope that helps.

    I should further say the files I sent are .xlsx and .docx files.  They look fine my end and I send such files all the time without problems.
    However, I did try to cheat by going in via the Safari onto my 'live' online email account and the Safari automatically transfers them to winmail.dat files with the same result.
    Ahh - have just been on using my PC this time and you are right, it seems that the service provider does the transfer and then when my outlook opens the file (on the PC), it must reconvert to .xlsx etc again.
    Very strange.
    Ergo, I guess the question should be how I open wimail.dat files ??

  • Re export excel to PDF version

    Am a PC user and would like to re export the excel (edited version) to PDF, keeping the original images of the original PDF file@. Is it possibel?

    If you have Acrobat installed (not the free Adobe Reader).
    Use Acrobat's PDFMaker for Excel (the "Acrobat" on the ribbon) to output a fresh PDF.
    Use a file name that is unique.
    Be well...

  • Excel read multiple cells

    Hi all,
    I want to read multiple cells from excel C1:C2 but I get the variant result:
    Value -> Array(Non Displayable) 
    When I removed string C2 to read cell C1 the result is OK.
    Does anybody know the solution?  
    Thanks in advance. 
    NacNud
    Using LabVIEW 8.5
    Sorry for the duplicate image. Don't know how to remove this.
    Attachments:
    Movie strip path.vi ‏13 KB
    Movie excel edit.vi ‏53 KB
    Movie date.xls ‏16 KB

    Hmmm...
    Solved it myself. The variant is not represented with a probe.
    The solution was to convert the variant data to an 2D array and then probe it.
    See attachement for the solution.
    NaNud
    Message Edited by excel read multiple cells on 05-18-2010 11:44 AM
    Attachments:
    Movie excel edit.vi ‏54 KB

  • Is the Quickoffice editing version already availab...

    Subject says it all really - I know the N97 comes with the Quickoffice viewers out of the box, but is the upgrade to a version which can edit Office documents available right now, or is it still in development? This is a deal-breaker for me - I'm moving to an N97 from a Palm Treo, and I need Word and Excel editing on the device.
    Many thanks in advance,
    S.

    OK.....so, I followed my own link and saw that I could get OfficeSuite for only 20 euros. So, I figured I would give this inexpensive option a chance. I purchased it and it onlycost me US$20 and not 20 euros (a savings of over US$7 over the 20 euro price!).
    I think I still prefer QuickOffice interface. But since I don't know what the edit capabilities of QuickOffice are - since they don't have a version for me and there is NO WORD on when they will - I can say that OfficeSuite is very usable and not a waste at all. For only $20, you get the ability to create new docs (word, excel, etc) and edit existing docs. The edit interface is difficult, but on a small screen, can you expect better?

  • Creating a dvd

    Is there a simple way to create a dvd from a sony handycam other than the iMovie? I find it comlicating to transfer the scenes from the camera and then how to make it work as a continious movie?

    Hi jeday,
    I think the iMovie is the most simpliest yet excellent editing software for mac.
    you can try create "easy dvd" directly using iDVD instead of iMovie if you just want to transfer everything continuously and burned it into a dvd media.
    Open your iDVD, and select one step dvd.
    Good Luck.

  • Does Aperture support making Panoramic Stitches?

    One of the most fun I have had on a digital machine is making Panorama Images. Does Aperture have an automatic stitch engine to put together images to make a 180 or 360 view called a Panoramic Image?

    Hi
    It will come eventually I guess, there are some great plug-in's for Aperture, which can be used from within Aperture. When you wish to use a plug-in you simply right click the image or images you wish to use with say, Photoshop or, Noise Ninja, then click >"edit with"..... and select your plug-in.
    This works well.....
    Remembering ( in Aperture's defence ) that Aperture is a powerful image management system, with some excellent editing capabilities.
    Have a look.... www.apple.com/aperture/resources/plugins.html
    Regard's...... W.....

  • Arabic language in crystal report

    how i can conver english report to arabic report(like what we have in excel)
    Edited by: Jebin Manalil on Apr 25, 2009 12:54 PM

    Not enough info. Please include the CR version and database being used.

Maybe you are looking for

  • I get the error in infoview??

    Hi all; When I go to the Infoview page and click on Document List or My Favorites i get the following error : An error has occurred: Index: 0, Size: 0 How do I resolve this?

  • MacBook Pro not booting to mac osx making partition on windows side and windows not booting either help

    I have a macbook pro with windows 7 on bootcamp partition. I made a partition in windows 7 using disk mgmt and after that my computer wont show mac os partition and only show windows and when i boot to windows it errors out with blue screen unmountab

  • [AS] Linking to/copying graphics to a server location in ID CS4

    Situation: I have an indesign CS4 document with a graphic placed locally from the desktop. I then via script copy that indesign file to a folder, and then copy the graphic files into a sub-folder. (that part works ok). If I open the indesign document

  • Transaction key in OBYC

    Hi Experts, I am in need to create  a newTransaction key in OBYC (MM - FI integration). kindly provide the procedure please. Regards Kuldeep Dubey

  • Access 2007/2010 Which Report Wizard

    Does anyone know the report wizard template which auto-rotates the field label to vertical as it is created? I have created one report with a layout I am happy with using a wizard, but didn't note which one I used :( Don't have the patience/knowledge