I am creating a standalone application in WPF and I am planning to use RDLC so that i can export it in Excel & PDF format. My concern here is does RDLC require MS Office to be installed in system/pc where i have installed my standalone application? I should be able to download even if MS Office not installed
Asked
Active
Viewed 199 times
0
-
possible duplicate of [Create Excel (.XLS and .XLSX) file from C#](http://stackoverflow.com/questions/151005/create-excel-xls-and-xlsx-file-from-c-sharp) – Oceans Sep 29 '15 at 13:08
-
I am not going to use external libraries for exporting it to Excel. Here problem is if I use RDLC I don't have to worry/handle about exporting. RDLC viewer will take care of exporting functionality – Shiljo Paulson Sep 29 '15 at 13:10
-
@Ahmed ilyas can you please share more information on it? – Shiljo Paulson Sep 29 '15 at 13:28
-
1Runtime libraries are not required, so this is disinformation. The reportviewer control does all the work and doesn't care what's installed on the client computer. – Bob G Sep 29 '15 at 13:34
1 Answers
3
No, you don't need MS Office to be installed (or other libraries) to export your report in a valid xls file but you need Excel (or any program capable of reading xls file) to view this file.
The same concept is valid for PDF file.

tezzo
- 10,858
- 1
- 25
- 48
-
You don't need Excel to view the file. You just need a program capable of viewing Excel files. So Excel, Excel Viewer, LibreOffice etc – mason Sep 29 '15 at 13:35