How to export SharePoint 2013 Calendar View to PPT or as an image?

Greetings!
I am working on a SharePoint 2013 event calendar and should be able to provide a capability to export my calendar view (day/week/month) as a PPT slide or as an image. I understand that OOB we can export the calendar list to Excel or open using MS Access.
I had been exploring the option of using the Chart View Web Part which can be saved as an image (jpeg/bmp/png). Here are the pitfalls - Chart View WP does not support calendar view. At best, I am able to use the Gantt Chart Types, but having difficulty using
Calendar list "Start Time" column for one of the axes. There is End Time and Duration columns available for selection, but not start time. Also, I am unable to define date range for my date in the x-axis. Right now I have an x-axis
that spans over 40 years. Is there any way to confine the chart for a particular quarter or year.
At this time, I am inclined to look at custom development approaches. Any suggestions regarding an approach will be really helpful.
Thanks!

Well, even if you want to go through "Export", it will be more manual work than taking a screenie. Unless of course you want to achieve it programmatically (am not sure what to do there).
Another option could be to subscribe to the SharePoint Calendar from Outlook. That way you can eliminate the need for the PPT (?) and also enable your users/clients/management to have more clarity on how the dates stand vis-a-vis other stuff they have listed
on their calendars.
----------------------- Sujay Sarma {Unbounded;}

Similar Messages

  • How to add SharePoint 2013 Promoted link list view web part in page programatically with Tiles view using CSOM.

    How to add SharePoint 2013 Promoted link list view web part in page programatically with Tiles view using CSOM. I found that it can be
    done by using XsltListViewWebPart class but how can I use this one by using shraepoint client api.
    shiv

    Nice, can you point me to the solution please ?
    I'm  trying to do this but I get an error : 
    Web Part Error: Cannot complete this action. Please try again. Correlation ID: blablabla
    StackTrace:    at Microsoft.SharePoint.SPViewCollection.EnsureViewSchema(Boolean fullBlownSchema, Boolean bNeedInitallViews)     at Microsoft.SharePoint.SPList.GetView(Guid viewGuid)   
    All help really appreciated.

  • SharePoint 2013 RSS Viewer not loading when other Custom web part using Update Panel or Ajax Timer control

    Hi,
    SharePoint 2013 RSS
    Viewer web part failing to complete loading when the page loads.
    This happens when having RSS Viewer and then adding a Custom webpart with an updatepanel and timer control.
    I  had used Ajax update panel and timer control to load the web part asynchronously after the main page is fully loaded.
    The RSS-Viewer web part hangs in loading state while the custom webpart loads just fine.
    The issue occurs when an like button click or Timer Tick event fires after the page
    is loaded.
    Haven't been able to track the issue.
    Couple of workaround I tried to call a server side button click event from the custom web part after the page gets fully loaded using JQuery shown below did not work out either.
     $(document).ready(function () {
                $('#<%= netButton2.ClientID %>').click();
    And 
    document.onreadystatechange = function () {
                if (document.readyState == "complete") {
                    $('#<%= netButton2.ClientID %>').click();
    Please let me know how to resolve this issue.
    Thanks,
    Franklin

    Hi Johan,
    The assignment of this user on the given task might be corrupted. Try to remove the resource from the task, publish the project, assign the resource again and publish again the project. If it is not working, try to unpublish the task (column "publish")
    and publih it again.
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, P-Seller |

  • Sharepoint 2013 explorer view error - problem opening this location in file explorer (HTTPS + Win7 Enterprise 64 bit + IE9 32 bit + Office 2007 32 bit)

    Hi,
    We have a problem using Sharepoint 2013 explorer view. (Error - We're having a problem opening this location in file explorer. Add this web site to your trusted sites list and try again).
    I'm using Windows 7 Enterprise 64 bit, Office 2007 32 bit and IE9 32 bit. And the sharepoint site is a https site.
    Some people in my organization are able to browse and some users getting the above error. (with the same client machine configuration)
    If I clear my browser cache, closes the browser and open it then the explorer view is working. But after a minute if I try again I'm getting the above mentioned error. This 1 minute expiration happens is since the first time I have used explorer
    view, not since I opened the browser.
    I have tried the following on my machine:
    1. Modified the web client service to run automatically.
    2. Verified the sharepoint site is part of trusted sites (https://*.spsite.com/)
    3. Compatibility mode is turned on.
    4. Tried adding
    AuthForwardServerList in the webclient registry settings under parameters. (restarted the web client)
    5. Verified the BasicAuthLevel set to 1 (since we are using SSL). Tried setting the BasicAuthLevel to 2 as well. (restarted the web client)
    6. Tried installing software update for web folders (KB907306).
    Verified the below on the production server:
    1. The web application has the root site collection.
    2. It has WebDav Publishing disabled under IIS Web Server feature.
    Could some one please help me in resolving this issue?
    Thanks.

    Hi  Deepak,
    According to your post, my understanding is that you failed to use "Open with Explorer"  in a document library.
    For your issue, please verify the following:
    ActiveX controls must be enabled in IE.
    As you are using Windows 7 Server as the client computer, you must install the Desktop Experience feature from Server Manager.
    Make sure there is a working Root site collection.
    Install this hotfix for windows 7 work with sharepoint 2013 :hotfixv4.microsoft.com/.../463266_intl_x64_zip.exe
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • How to Export Snapshots and Materlized View in Oracle 9i

    Hi,
    How to Export Snapshots and Materlized View in Oracle 9i .
    I require to Migrate from 9i to 10g with either Export or Script.
    Please help

    Using exp-imp for snapshots generally causes problems, at least for me. I would prefer taking their creation scripts and running them on the new database.
    By the way, what do you mean by "migrate from 9i to 10g"? Are you trying to create the same snapshots in another (10g) database or are you trying to upgrade your 9i database to 10g? If it is the latter then you can just upgrade the database automatically with the upgrade assistant or manually using upgrade scripts.

  • How to Insert Sharepoint 2013 Person or Group Field using VBA

    Hello,
    How to Insert Sharepoint 2013 Person or Group Field using VBA , I tried set the field with ID / ID;Name / Name
    but all failed, Please advice 
    Function SetSP_Field(F_Yer As Single, F_WekNo As Single, F_ProjectNum As String, strField As Variant, strFieldValue As Variant) As String
    ' test code
        Dim rst         As Recordset
        Dim strSQL      As String
        Dim SP_RecSet   As ADODB.Recordset
        Set SP_RecSet = New ADODB.Recordset
        SetSP_Field = False
        strSQL = "Status Report"
        On Error Resume Next
        Call SP_Connect(2)
        strSQL = "select " & SP_List & ".* From  " & SP_List _
               & " Where [Year] = " & CInt(F_Yer) _
               & "   and [WeekNo] = " & CInt(F_WekNo) _
               & "   and [Compass_Code] = '" & F_ProjectNum & "' ; " _
    '           & " Set " & strField & " = " & strFieldValue
        'Debug.Print strSQL
        'Debug.Print SP_CN
        SP_RecSet.Open strSQL, SP_CN, adOpenStatic, adLockOptimistic
        If SP_RecSet.RecordCount = 0 Then
            Debug.Print "Record for project: " & F_ProjectNum & " not found"
            LogFile.WriteLine ("Record " & strID & " not found")
        End If
        If Not SP_RecSet.EOF Then
            'SP_RecSet.Edit
            SP_RecSet.Fields(strField) = strFieldValue
            SP_RecSet.Update
            If Err.Number <> 0 Then
                MsgBox ("SP Update Error: " & Err.Description)
                GoTo Exit_Fun
            End If
            SetSP_Field = True
        End If
    Exit_Fun:
        SP_RecSet.Close
        Set SP_RecSet = Nothing
    End Function

    Hi Tim,
    Let’s verify the followings:
    Whether this issue occurred for other lists in the same site.
    Whether this issue occurred for all users who don’t have full control.
    Whether this issue occurred on other sites.
    When you created the people & group column, which show field did you used? Please try to use a different show field for the people & group column, compare the result.
    In addition, please check if the link is useful:
    http://www.learningsharepoint.com/2013/08/21/empty-value-in-people-picker-after-saving-the-list-form-in-sharepoint/
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • Sharepoint 2013 list view quick edit does not work with out remote API permissions

    sharepoint 2013 list view quick edit does not work with out remote API permissions.
    When I give Use Remote Interfaces  -  Use SOAP, Web DAV, the Client Object Model or SharePoint Designer interfaces to access the Web site it works which is not an ideal situation..
    MCTS Sharepoint 2010, MCAD dotnet, MCPDEA, SharePoint Lead

    This is true. If you use Fiddler to watch the requests from the list view quick edit you can see CSOM calls. For example when changing a value in a cell, when you tab out you will see the SetFieldValue and Update method calls on the list item.
    Blog | SharePoint Field Notes Dev Tools |
    SPFastDeploy | SPRemoteAPIExplorer

  • Exchange Outlok Calendar to SharePoint 2013 calendar Sync issue

    Hi All,
    Am trying to add my Exchange outlook calendar to my SharePoint 2013 calendar using Calendar overlay option.
    Am providing correct outlook web access url and correct exchange web service URL .
    But when i try to connect to outlook option am receiving error message like below.
    The HTTP request is unauthorized with client authentication scheme 'Ntlm'. The authentication header received from the server was 'Negotiate,NTLM'. (4f48bc9c-b7ec-90b1-79c1-9659d9d621f3)
    Please find the attached screenshot more information.
    Please let me know if any one having answer for this issue.
    Thanks,
    Mani L
    Mani L

    Hi Mani,
    Based on the error message, it is an authentication issue.
    I recommend to set the authentication for SharePoint to be NTLM, and Exchange web services as NTML as well to see if the issue still occurs.
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Integrate Outlook Calendar for all users to Sharepoint 2013 calendar

    Hi,
    I have a specific requirement to add the outlook calendar for each user in my organisation to sharepoint 2013 calendar.
    Any user at any point of time can get the details for other user(s) from the Sharepoint 2013 calendar.
    I know there is a calendar overlay option in sharepoint which will add my outlook calendar to Sharepoint 2013.
    Can any one please help me to integrate all users calendar so that the schedule for any user(s) can be requested directly from Sharepoint 2013 calendar.
    I am ok to use exchange webservice and c# to achieve this.
    Thanks in advance.

    Hi Somdeep,
    I assume you are using Exchange product as SMTP server.
    If you would like to integrate all Exchange mailbox accounts' schedule to SharePoint calendar, I'd recommend you create a shared mailbox in Exchange side, then let all accounts make schedule on it. That way, you may need to overlay one Exchange
    calendar on SharePoint calendar.
    Regards,
    Rebecca Tu
    TechNet Community Support

  • How to export/import outlook calendar with certain period

    One of the user likes to import someone's calendar. But she only likes to import future calendar entries.
    I appreciate if you someone shows me how to accomplish this.
    Thanks.

    Hi,
    Please try my method, since I'm not sure which version of Outlook you are using, I'll take Outlook 2013 for example:
    Go to that calendar that you want to export, then click the VIEW
    tab -> Current View -> Change View -> Select
    List. All items in that calendar will be listed, then we go to
    View Settings -> Filter -> Advanced tab ->
    Field -> Date/Time fields -> Created
    -> Under Conditior, select on or after
    -> Under Value, type in the date and time, for example, Tue 6/10/2014 9:00 PM -> Click
    Add to List -> OK.
    Thus we have only the items on or after a certain date and time displayed in the list, Ctrl + A to select them all then Ctrl + C to copy them. Create a new Calendar then copy all the items into the new calendar by Ctrl + V.
    Then we can export the new calendar from FILE tab ->
    Open & Export -> Import/Export.
    Regards,
    Melon Chen
    TechNet Community Support

  • SharePoint 2013 cannot view PDF documents in mobile browser with office web apps

    Hi,
    I'm receiving the following error when viewing SharePoint 2013 PDF documents in a mobile browser after clicking on the filename:
    "Viewing of .pdf files has been disabled in Microsoft Word Mobile Viewer. Please get in touch with your helpdesk."
    My Question
    Is viewing PDF documents in mobile browsers with Office Web Apps SP1 actually supported?  If so, how can I enable it?  I've already have pdf viewing working in non-mobile browsers. Word documents open just fine on mobile browsers too.
    I'm getting conflicting answers for pdf mobile viewing support from various sources:
    You've got Microsoft toting that they've added in PDF viewing on any device for Office Web Apps
    http://blogs.office.com/2013/07/03/pdfs-in-the-word-web-app/
    A MS support person saying saying it is not supported
    http://blogs.technet.com/b/office_web_apps_server_2013_support_blog/archive/2013/12/31/enabling-pdf-previews-in-document-libraries-with-office-web-apps-2013-in-sharepoint-2013-open-link-does-not-work-from-preview.aspx
    Another person implying that it should work because you can disable pdf browsing for mobile browsers only
    http://blogs.technet.com/b/office_resource_kit/archive/2013/07/24/control-whether-pdfs-open-in-word-web-app-or-the-default-pdf-reader.aspx
    What I've tried
    When I started looking into this there was a mobile WOPI entry:
    Application     : WordPdf
    Extension       : PDF
    ProgId          :
    Action          : mobileView
    IsDefaultAction : False
    ServerName      : 20SP8
    WopiZone        : internal-http
    I tried experimenting with tweaking this binding by changing the DefaultAction to true, and even removing it altogether via:
    Get-SPWopiBinding -Action "MobileView" -Application "WordPDF" | Remove-SPWopiBinding -Confirm:$false
    But I still get the same message.
    I removed all the WordPdf bindings and re-added them via:
    New-SPWOPIBinding –ServerName "<myserver>" –Application "WordPDF" -AllowHTTP
    No dice.  In fact the mobileview binding doesn't even come back... but I guess that is a different issue altogether.
    Version
    SharePoint 2013 (SP1)
    Office Web Apps Server (SP1)
    Farm Setup
    Internal facing only
    2 front end servers, 1 app server, 1 office web apps server

    I think the PDF support, if it exists, in only in Office 365. Always remember that the Office 365 and on premises versions will never be in sync. On premise is updated using periodic service packs and Office 365 has continuous updates. (I've heard every
    10 days.)
    In my Office 365 / IE 10 tests, the PDFs open in the browser's default PDF viewer, in my case FoxIt Reader. So I can't prove one way or the other about support in Office Web Apps.
    Mike Smith TechTrainingNotes.blogspot.com

  • Is it possible to transfer the data from a SharePoint 2013 calendar entry to Outlook 2010 calendar entry?

    Hi,
    I've managed to Sync my SharePoint Calendar with my Outlook. At the moment it only transfers through the Title and Location of my calendar entry.
    Is it possible to transfer the description as per the SharePoint entry so it shows up in Outlook?
    Thanks

    Hi,
    According to your post, my understanding is that you not seen the description of the calendar item synced with the outlook.
    I had tested with the issue, the description could sync with outlook.
    I created some items in the calendar, clicked the “Connect to Outlook” control, the items synced with the outlook including the description of the items.
    Did the issue occur in other calendars? You can create a new calendar with some items, the check whether it works.
    You can also check the event log and ULS log to see if anything unexpected occurred.
    To check event log, click the Start button and type “Event Viewer”in the Search box. 
    For SharePoint 2013, by default, ULS log is at
    C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\LOGS
    You can check the ULS log by the methods here:
    http://blogs.msdn.com/b/opal/archive/2009/12/22/uls-viewer-for-sharepoint-2010-troubleshooting.aspx
    http://msdn.microsoft.com/en-us/library/gg193966(v=office.14).aspx
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • How to make SharePoint 2013 convert License type in PowerShell?

    How create script for passing Product Key for converting farm license type for Sharepoint 2013 like it is describied below:
    http://macslui.blogspot.com/2013/02/sharepoint-2010-convert-license-type.html

    How create script for passing Product Key for converting farm license type for Sharepoint 2013 like it is describied below:
    http://macslui.blogspot.com/2013/02/sharepoint-2010-convert-license-type.html
    All of the methods for licensing are marked internal, so without reflection you wouldn't be able to set the license via PowerShell.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • How to use Sharepoint 2013 img file

    Hi,
    I downloaded Sharepoint 2013 as an img file. I am trying to install it on VMWare 5.1 which only accepts ISO files. How can I convert the img file to ISO or what other workarounds are available?
    I already tried renaming the file to ISO, but it didn't work.
    Thanks

    Hi WaelS,
    If you want to use img file in VMWare, you may need to convert the img file to ISO, as VMWare doen't support img file.
    Please do as the followings to convert the img file to iso:
     1. Unzip the files
     2. Open a command prompt (Start > Run > type cmd, press Enter)
     3. Browse to the folder where the unzipped files are (cd "c:\Windows ISO Files")
     4. Considering that you are in the folder containing the files command prompt, type
           copy /b file1+file2+file3+file4+file5 file.iso
     4a. Check that the files have no extension. If they have, the command changes to something like:
           copy /b file1.ext+file2.ext+file3.ext+file4.ext+file5.ext file.iso
     4b. If there aren't *any* other files in the folder, typing this should be enough:
           copy /b *.* dvd_file.iso
    If you still have question about the issue, I suggest you can post a thread in corresponding forum, you will get more helpful information from there.
    Best Reagrds
    Zhengyu Guo
    TechNet Community Support

  • SharePoint 2013 - Power View

    Hi,
    I try to run Power View featrue in SharePoint 2013 but still I get error
    The feature: "Power View" is not supported in this edition of Reporting Services. I have already installed PowerPivot Add-In and Reporting Service Add-In I see new content type, I activated Site Collection feature Power View Integration but I'm not
    able to create report, my farm looks:
    SharePoint 2013 WFE + APP + SQL Server 2012 SP1 and external OLAP data for Power Vierw report is in SQL 2014 in Multidimensional deployment mode.
    Best regards,

    Hi,
    I didn't install SQL Reporting Services, I install Reporting Services SharePoint Add-Inn from SQL media only. I did it according to below blog:
    http://blogs.msdn.com/b/biblog/archive/2012/12/04/installing-and-configuring-sql-reporting-services-on-sharepoint-2013.aspx
    Today I found one thing that Power View feature will only work with multidimensional deployment mode after
    install CU4 for SQL 2012 SP1. Today I'm going to install SP2 for SQL 2012, hope it help?
    But I would like to confirm one thing, I should install it on server where I have PowerPivot Analysis instance
    for SharePoint not on the external SQL from I get data to Power View report?
    Thanks for supprt,
    Regrads

Maybe you are looking for

  • BAPI to Reject purchase order

    Hi All Kindly let us know if there is any  BAPI to Reject purchase order  (ME29N) Thanks

  • I can't escape my iPhone 4s camera pan mode

    I've tried everything, shutting down, closing the app, pressing anything on the screen that I can see. I've searched the internet. I can't escape it to take a plain old picture! Can anybody help me? I'm visually impaired, and that makes seeing the ic

  • IPhoto is not responding, I'm new in Mac world

    file:///.file/id=6812961.35Iphoto is not working. I was working on my photos and suddenly the program start to think and since then (more than a week) still doing it, I try to close it but nothing is going on, I try to force the closing but nothing,

  • Exploring Web Services with Dreamweaver CS4

    How can you explore web services with Dreamweaver CS4? You used to be able to go under Components and add Web Services and enter the url for the WSDL (ex. http://www.communitymx.com/content/article.cfm?cid=70AAB). How do you do that now in CS4?

  • Orders05

    Hi, I am sending PO to a WMS system in which I am using standard IDOC type Orders05 and message type Orders. When I send a PO, the shipping data in segment E1EDL37 is missing.Please let me know is there any specfic setting to be done. Thanks in advan