PDF reporting using Microsoft reporting services (.rdlc) - c#-4.0

Is there anyway to create Table of Contents for pdf generating using rdlc ?

Add a document map to your report. When you export to PDF, the document map elements are shown a table of contents entries.

Related

Automatic import of PDF files to the existing SharePoint List

The problem is the following. I have an empty SharePoint List (table) and I want to fulfill it with the particular data from the same to each other PDF files (consisting of tables). Then I want to show the fulfilled data from SharePoint List in PowerBI. I know, that SharePoint List can be connected to the PowerBI and PDF data can be imported there as well.
How to make this process automatic? Is there a possibility to make a macros, which will have an option to upload particular file and import the data, which I need, to the SharePoint List?
Thanks for your feedback in advance!
I tried to upload it directly to PowerBI, but only see the manual solution of fulfilling the table.

Exporting Sharepoint to excel form

Situation/requirement: I have a sharepoint list. The entries in this sharepoint list go as entry to an excel sheet which is a form to be printed out. I am looking into a functionality flow/app that could be used to export the new entries to fill and print out to an excel template. Any thoughts?
#Gaurav Vasishth,
Power Automate offers a connector that could update Excel file on the cloud.
https://learn.microsoft.com/en-us/connectors/excelonlinebusiness/#update-a-row
You can use this connector to update rows or create worksheet/table.
BR

How to programmatically create a list from an excel spreadsheet in SharePoint 2010?

I want to create a list from an excel spreadsheet in SharePoint 2010. When a new Excel document is uploaded to a SharePoint library, a corresponding list will be created automatically. Is this possible?
You can do this in two phases:
Create an empty MS Access database and import your excel sheet into it (in MS access go to External data -> Excel, choose your file and follow the steps to import it.
When you get the MS access table with the data from excel sheet, right click the table name in Tables section and go to Export -> SharePoint list. There you can specify the url of your SharePoint site and the name of the new list. Click Ok and wait until the list is created and the data is uploaded to SharePoint.
EDIT:
Since this needs to be done automatically (as stated in comments), this is the high overview of the things that needs to be done, with some useful links:
Create Event receiver for the library that the excel files will be uploaded to.
In the ItemAdded Method write the code that will do the following:
Get the uploaded file
Parse the excel file using the OpenXml library
Create the list in the SharePoint site, based on the columns taken from the excel file
Loop through all the rows in the excel file and insert the list item for each excel row.

Add and remove columns from a Tablix in rdlc report

I want to create a report with dynamic number of columns.
I have used the solutions of these two following links to load and modify my rdlc report file.
http://dobrzanski.net/2009/02/06/how-to-dynamically-add-new-columns-to-report-created-with-reporting-services/
Why does C# XmlDocument.LoadXml(string) fail when an XML header is included?
but the problem is that when i use the Save method of xmlDocument to save the report anything happens.
what is my mistake???

Using Sharepoint to Produce a Word/PDF Document from HTML

I have a large document that has been written in HTML that I want to update and produce a PDF/Word document from. Is there a way to use Sharepoint to cut and paste the individual HTML pages into a hierarchical structure and then publish the whole as a single PDF or Word document?
Bonus points for being able to deal with linked attachments.

Resources