<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>ExcelPackage Forum Rss Feed</title><link>http://www.codeplex.com/ExcelPackage/Project/ListForums.aspx</link><description>ExcelPackage Forum Rss Description</description><item><title>New Post: Inserting Row(s)</title><link>http://excelpackage.codeplex.com/discussions/443860</link><description>&lt;div style="line-height: normal;"&gt;How to insert row(s) in existing Excel file with ExcelPackage&lt;br /&gt;
&lt;/div&gt;</description><author>Ogo</author><pubDate>Thu, 16 May 2013 07:53:33 GMT</pubDate><guid isPermaLink="false">New Post: Inserting Row(s) 20130516075333A</guid></item><item><title>New Post: C# MVC, SQL to Excel</title><link>http://excelpackage.codeplex.com/discussions/443601</link><description>&lt;div style="line-height: normal;"&gt;Hi,&lt;br /&gt;
I want to make &lt;strong&gt;some tabs&lt;/strong&gt; in my worksheet when I pass the information between DataBase and Excel.&lt;br /&gt;
In the first tab I want the information with some especific ordering and grouping(it's done), and in the second one I want the information without constraints.&lt;br /&gt;
I copied the code if anybody could help me to create that second tab.&lt;br /&gt;
Thanks.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
  public FileResult GenerarExcel(string usuario, DateTime? fechadesde, DateTime? fechahasta, string proyecto, EnumsAppNameIncidemcias departamento = EnumsAppNameIncidemcias.NoDefinido)&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;    {
        //var lista_usuarios = usuario.Split(',').ToList();
        var partes = db.ParteHorasIncidenciasAvenir.AsQueryable();

        if (!String.IsNullOrEmpty(usuario))
        {
            partes = partes.Where(c =&amp;gt; c.Nom_Usuario.Contains(usuario));
        }
        if (fechadesde.HasValue &amp;amp;&amp;amp; fechahasta.HasValue)
        {
            partes = partes.Where(c =&amp;gt; c.Fecha &amp;gt;= fechadesde.Value &amp;amp;&amp;amp; c.Fecha &amp;lt;= fechahasta.Value);
        }
        if (!departamento.CompararConEnum(EnumsAppNameIncidemcias.Todos) &amp;amp;&amp;amp; !departamento.CompararConEnum(EnumsAppNameIncidemcias.NoDefinido))
        {
            partes = partes.Where(c =&amp;gt; c.Nom_Dep == departamento.ToCodigo());
        }
        if (!String.IsNullOrEmpty(proyecto))
        {
            partes = partes.Where(c =&amp;gt; c.Proyecto == proyecto);
        }

        var listapartes = partes.ToList();

        using (ExcelPackage pck = new ExcelPackage())
        {
            var partesAgrupados = listapartes.GroupBy(c =&amp;gt; c.Nom_Dep);

            foreach (var parteagrupado in partesAgrupados)
            {

                //Create the worksheet 
                ExcelWorksheet ws = pck.Workbook.Worksheets.Add(parteagrupado.Key);



                ws.Cells[&amp;quot;A1&amp;quot;].Value = &amp;quot;Fecha&amp;quot;;
                ws.Cells[&amp;quot;B1&amp;quot;].Value = &amp;quot;Nombre&amp;quot;;
                ws.Cells[&amp;quot;C1&amp;quot;].Value = &amp;quot;Unidad de Negocio&amp;quot;;
                ws.Cells[&amp;quot;D1&amp;quot;].Value = &amp;quot;Proyecto&amp;quot;;
                ws.Cells[&amp;quot;E1&amp;quot;].Value = &amp;quot;Tarea&amp;quot;;
                ws.Cells[&amp;quot;F1&amp;quot;].Value = &amp;quot;Descripcion&amp;quot;;
                ws.Cells[&amp;quot;G1&amp;quot;].Value = &amp;quot;Minutos&amp;quot;;
                ws.Cells[&amp;quot;H1&amp;quot;].Value = &amp;quot;Vinculado a Incidencia&amp;quot;;


                //Format the header for column 1-3
                using (ExcelRange rng = ws.Cells[&amp;quot;A1:H1&amp;quot;])
                {
                    rng.Style.Font.Bold = true;
                    rng.Style.Fill.PatternType = ExcelFillStyle.Solid;                      //Set Pattern for the background to Solid
                    rng.Style.Fill.BackgroundColor.SetColor(Color.FromArgb(79, 129, 189));  //Set color to dark blue
                    rng.Style.Font.Color.SetColor(Color.White);
                }


                var parteagrupadoOrdenado = parteagrupado.OrderByDescending(c =&amp;gt; c.Fecha).ThenBy(c =&amp;gt; c.Nom_Usuario);
                var i = 2;
                foreach (var l in parteagrupadoOrdenado)
                {
                    ws.Cells[&amp;quot;A&amp;quot; + i].Value = l.Fecha.ToShortDateString();
                    ws.Cells[&amp;quot;B&amp;quot; + i].Value = l.Nom_Usuario;
                    ws.Cells[&amp;quot;C&amp;quot; + i].Value = l.Nom_Dep;
                    ws.Cells[&amp;quot;D&amp;quot; + i].Value = l.Proyecto;
                    ws.Cells[&amp;quot;E&amp;quot; + i].Value = l.Tarea;
                    ws.Cells[&amp;quot;F&amp;quot; + i].Value = l.Descripción;
                    ws.Cells[&amp;quot;G&amp;quot; + i].Value = l.Minutos;
                    ws.Cells[&amp;quot;H&amp;quot; + i].Value = l.id_I;

                    i++;
                }
            }                   

                //Write it back to the client
                // Response.ContentType = &amp;quot;application/vnd.openxmlformats-officedocument.spreadsheetml.sheet&amp;quot;;
                //Response.AddHeader(&amp;quot;content-disposition&amp;quot;, &amp;quot;attachment;  filename=ParteIncidencias.xlsx&amp;quot;);

                var memoryStream = pck.GetAsByteArray();
                var fileName = &amp;quot;ParteHorasOrdenado.xlsx&amp;quot;;
                return base.File(memoryStream, &amp;quot;application/vnd.openxmlformats-officedocument.spreadsheetml.sheet&amp;quot;, fileName);
        }&lt;/code&gt;&lt;/pre&gt;

}&lt;br /&gt;
&lt;/div&gt;</description><author>bohaes</author><pubDate>Tue, 14 May 2013 14:29:21 GMT</pubDate><guid isPermaLink="false">New Post: C# MVC, SQL to Excel 20130514022921P</guid></item><item><title>New Post: Work on a MemoryStream instead of a File</title><link>http://excelpackage.codeplex.com/discussions/234877</link><description>&lt;div style="line-height: normal;"&gt;Nice job. Thanks.&lt;br /&gt;
&lt;/div&gt;</description><author>rosborn</author><pubDate>Wed, 17 Apr 2013 16:38:29 GMT</pubDate><guid isPermaLink="false">New Post: Work on a MemoryStream instead of a File 20130417043829P</guid></item><item><title>New Post: Save as PDF</title><link>http://excelpackage.codeplex.com/discussions/431117</link><description>&lt;div style="line-height: normal;"&gt;Please provide code for&lt;br /&gt;
excel  file save as pdf using ExcelPackage excel&lt;br /&gt;
&lt;/div&gt;</description><author>sajeev1</author><pubDate>Mon, 15 Apr 2013 14:09:28 GMT</pubDate><guid isPermaLink="false">New Post: Save as PDF 20130415020928P</guid></item><item><title>New Post: GROUPING EXCEL ROWS</title><link>http://excelpackage.codeplex.com/discussions/439685</link><description>&lt;div style="line-height: normal;"&gt;Hi,&lt;br /&gt;
&lt;br /&gt;
can anyone tell me if it is possible to gropu excel rows in c# using open xml? I searched the web but couldn't find anything which would help me.&lt;br /&gt;
&lt;br /&gt;
Any help on this is highly appreciated.&lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
vamsi&lt;br /&gt;
&lt;/div&gt;</description><author>vamsipunna</author><pubDate>Tue, 09 Apr 2013 18:00:52 GMT</pubDate><guid isPermaLink="false">New Post: GROUPING EXCEL ROWS 20130409060052P</guid></item><item><title>New Post: Grouping Rows c# with ExcelPackage</title><link>http://excelpackage.codeplex.com/discussions/227493</link><description>&lt;div style="line-height: normal;"&gt;Hi ccortiz,&lt;br /&gt;
&lt;br /&gt;
I am facing the same problem, couldn't find anything which allows me to gropu rows through excelpackage (ooxml). Could you let me know if you have found solution for this problem?&lt;br /&gt;
&lt;/div&gt;</description><author>vamsipunna</author><pubDate>Tue, 09 Apr 2013 17:59:23 GMT</pubDate><guid isPermaLink="false">New Post: Grouping Rows c# with ExcelPackage 20130409055923P</guid></item><item><title>New Post: Save as PDF</title><link>http://excelpackage.codeplex.com/discussions/431117</link><description>&lt;div style="line-height: normal;"&gt;Have you figured this out?&lt;br /&gt;
&lt;/div&gt;</description><author>dharric</author><pubDate>Mon, 08 Apr 2013 16:09:58 GMT</pubDate><guid isPermaLink="false">New Post: Save as PDF 20130408040958P</guid></item><item><title>New Post: How to Execute Excel Macro</title><link>http://excelpackage.codeplex.com/discussions/438991</link><description>&lt;div style="line-height: normal;"&gt;I have a macro enabled excel file and i want to execute macro using this package.&lt;br /&gt;
Can anybody tell me the exact command to execute excel macro using this package.&lt;br /&gt;
&lt;br /&gt;
Any help should be appreciated&lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
&lt;/div&gt;</description><author>mehtapraveen1982</author><pubDate>Wed, 03 Apr 2013 17:36:02 GMT</pubDate><guid isPermaLink="false">New Post: How to Execute Excel Macro 20130403053602P</guid></item><item><title>New Post: How to set Auto width </title><link>http://excelpackage.codeplex.com/discussions/248406</link><description>&lt;div style="line-height: normal;"&gt;Any idea why this doesn't work? I'm using Excel 2010.&lt;br /&gt;
&lt;/div&gt;</description><author>pashkatarakashka</author><pubDate>Tue, 19 Mar 2013 16:12:46 GMT</pubDate><guid isPermaLink="false">New Post: How to set Auto width  20130319041246P</guid></item><item><title>New Post: Problem: generated xlsx needs to be repaired when opened by Excel 2012</title><link>http://excelpackage.codeplex.com/discussions/437030</link><description>&lt;div style="line-height: normal;"&gt;Hello again,&lt;br /&gt;
&lt;br /&gt;
I figuered out what the problem is:&lt;br /&gt;
&lt;br /&gt;
&lt;img src="http://up.picr.de/13818736zy.jpg" alt="Image" /&gt;&lt;br /&gt;
&lt;br /&gt;
due to my localisation to German my &amp;quot;.ToString()&amp;quot; Methods of Decimals, floats changes a value of &amp;quot;2.5&amp;quot; to &amp;quot;2,5&amp;quot;. Excel does not like that obviously. My current solution:&lt;br /&gt;
&lt;br /&gt;
I added 2 set-methods to the &amp;quot;ExcelCell.cs&amp;quot; --&amp;gt; (~line 103)&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;        /// &amp;lt;summary&amp;gt;
        /// Sets the value of the Cell. Handles Location-Problems (2,5 instead of 2.5 etc)
        /// &amp;lt;/summary&amp;gt;
        public decimal ValueAsDecimal
        {
            set
            {
                this.Value = value.ToString(System.Globalization.CultureInfo.InvariantCulture);
            }
        }&lt;/code&gt;&lt;/pre&gt;

and&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;        /// &amp;lt;summary&amp;gt;
        /// Sets the value of the Cell. Handles Location-Problems (2,5 instead of 2.5 etc)
        /// &amp;lt;/summary&amp;gt;
        public double ValueAsDouble
        {
            set
            {
                this.Value = value.ToString(System.Globalization.CultureInfo.InvariantCulture);
            }
        }&lt;/code&gt;&lt;/pre&gt;

Works for me.&lt;br /&gt;
&lt;br /&gt;
kind regards&lt;br /&gt;
&lt;/div&gt;</description><author>julwelt</author><pubDate>Tue, 19 Mar 2013 09:44:50 GMT</pubDate><guid isPermaLink="false">New Post: Problem: generated xlsx needs to be repaired when opened by Excel 2012 20130319094450A</guid></item><item><title>New Post: Problem: generated xlsx needs to be repaired when opened by Excel 2012</title><link>http://excelpackage.codeplex.com/discussions/437030</link><description>&lt;div style="line-height: normal;"&gt;Hello!&lt;br /&gt;
&lt;br /&gt;
I have an project that needs to generate xlsx-Files from a database. I am using ExcelPackage simply as descriped in the &amp;quot;Getting started&amp;quot;-Section ( &lt;a href="http://excelpackage.codeplex.com/wikipage?title=Creating%20an%20Excel%20spreadsheet%20from%20scratch&amp;amp;referringTitle=Home" rel="nofollow"&gt;Getting Started&lt;/a&gt; ). &lt;br /&gt;
&lt;br /&gt;
(vb)&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;Using xlPackage As New ExcelPackage(newFile)
Dim worksheet As ExcelWorksheet = xlPackage.Workbook.Worksheets.Add(FileManager.WorksheetName)

' Header
worksheet.Cell(row, ProductID).Value = &amp;quot;ProductID&amp;quot;

'Content
For Each ...
....
worksheet.Cell(row, ProductID).Value = p.ProductID.ToString
....
Next

xlPackage.Save()
End Using&lt;/code&gt;&lt;/pre&gt;

This works fine and a file is generated. But when I open this file, I got an Errormessage (sadly in German..)&lt;br /&gt;
&lt;br /&gt;
&lt;img src="http://up.picr.de/13808571uf.jpg" alt="Image" /&gt;&lt;br /&gt;
(We found a Problem in  'products(6).xlsx'. Recover as much as possible? If you trust... bla bla 'Ja')&lt;br /&gt;
&lt;br /&gt;
Then the file is opened and the content is showen. All content that is meant to be there is there, no data lost etc.&lt;br /&gt;
&lt;br /&gt;
Because I provide the file via Webserver i have to allow modifications:&lt;br /&gt;
&lt;br /&gt;
&lt;img src="http://up.picr.de/13808572xf.jpg" alt="Image" /&gt;&lt;br /&gt;
&lt;br /&gt;
When I click I get a Message telling me that Excel needed to repair the File in order to open it.&lt;br /&gt;
&lt;br /&gt;
&lt;img src="http://up.picr.de/13808573py.png" alt="Image" /&gt;&lt;br /&gt;
&lt;br /&gt;
When i close the Message i can work with the file as usual. I can save it, load it into my application, add stuff and so on, so the file itself seems not to be broken at all.&lt;br /&gt;
&lt;br /&gt;
error.xml:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot; standalone=&amp;quot;true&amp;quot;?&amp;gt;
-&amp;lt;recoveryLog xmlns=&amp;quot;http://schemas.openxmlformats.org/spreadsheetml/2006/main&amp;quot;&amp;gt;&amp;lt;logFileName&amp;gt;error013960_01.xml&amp;lt;/logFileName&amp;gt;&amp;lt;summary&amp;gt;Fehler in Datei 'D:\Download\products (6).xlsx'&amp;lt;/summary&amp;gt;-&amp;lt;additionalInfo&amp;gt;&amp;lt;info&amp;gt;Excel hat die Überprüfung und Reparatur auf Dateiebene abgeschlossen. Einige Teile dieser Arbeitsmappe wurden repariert oder verworfen.&amp;lt;/info&amp;gt;&amp;lt;/additionalInfo&amp;gt;-&amp;lt;repairedRecords summary=&amp;quot;Die folgenden Reparaturen wurden durchgeführt:_x000d__x000a__x000d__x000a_&amp;quot;&amp;gt;&amp;lt;repairedRecord&amp;gt;Reparierte Datensätze: Zellinformationen von /xl/worksheets/sheet1.xml-Part&amp;lt;/repairedRecord&amp;gt;&amp;lt;/repairedRecords&amp;gt;&amp;lt;/recoveryLog&amp;gt;&lt;/code&gt;&lt;/pre&gt;

As said the generated file works fine but the &amp;quot;error&amp;quot;-Messages stating that the file is broken are annoying. &lt;br /&gt;
Does anybody have similar issues or any idea how this issue is caused? Is there a special step I have to do in order to generate a new xlsx file from scratch? Thanks a lot for any help&lt;br /&gt;
&lt;/div&gt;</description><author>julwelt</author><pubDate>Mon, 18 Mar 2013 11:32:04 GMT</pubDate><guid isPermaLink="false">New Post: Problem: generated xlsx needs to be repaired when opened by Excel 2012 20130318113204A</guid></item><item><title>New Post: excelpackage excel worksheet cell comma separated value</title><link>http://excelpackage.codeplex.com/discussions/435875</link><description>&lt;div style="line-height: normal;"&gt;Hello i´ve been developing with excelpackage&lt;br /&gt;
when opening the excel document, something about a recoverable error and xml&lt;br /&gt;
example:&lt;br /&gt;
worksheet1.cell(3,3).value=&amp;quot;1&amp;quot;  ----&amp;gt;  works great&lt;br /&gt;
worksheet1.cell(3,3).value=&amp;quot;2.0,1.0&amp;quot;  ----&amp;gt;  throws an error&lt;br /&gt;
&lt;br /&gt;
does someone knows how to override this? &lt;br /&gt;
&lt;/div&gt;</description><author>ramu_drk</author><pubDate>Fri, 08 Mar 2013 10:18:35 GMT</pubDate><guid isPermaLink="false">New Post: excelpackage excel worksheet cell comma separated value 20130308101835A</guid></item><item><title>New Post: Save as PDF</title><link>http://excelpackage.codeplex.com/discussions/431117</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;Is it possible to save a worksheet to pdf using this package?&lt;/p&gt;
&lt;/div&gt;</description><author>anelembanga</author><pubDate>Mon, 28 Jan 2013 15:59:33 GMT</pubDate><guid isPermaLink="false">New Post: Save as PDF 20130128035933P</guid></item><item><title>New Post: Print an Excel Sheet</title><link>http://excelpackage.codeplex.com/discussions/409527</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;First of all, thanks for creating this great library.&lt;/p&gt;
&lt;p&gt;I want to print the Excel sheet that I have modified to:&lt;/p&gt;
&lt;p&gt;1. Paper&lt;/p&gt;
&lt;p&gt;2. PDF (The PDFCreator driver is already installed on the machine where my application will be installed)&lt;/p&gt;
&lt;p&gt;Can anyone tell me how I can select a printer&amp;nbsp;and how a print command is sent?&lt;/p&gt;
&lt;p&gt;Thanks in advance.&lt;/p&gt;
&lt;p&gt;Abbas&lt;span style="white-space:pre"&gt; &lt;/span&gt;&lt;/p&gt;
&lt;/div&gt;</description><author>AbbasJafri</author><pubDate>Thu, 20 Dec 2012 11:50:36 GMT</pubDate><guid isPermaLink="false">New Post: Print an Excel Sheet 20121220115036A</guid></item><item><title>New Post: How to draw bolder with excel package</title><link>http://excelpackage.codeplex.com/discussions/400274</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;I have define a excel file template then I using this template to fill customer list and create new file. My problem is when I create &amp;nbsp;new file it doen't have border. I must open excel new file and using Microsoft to draw border for excel new file manually.
 I want to draw border in my source code.&lt;/p&gt;
&lt;p&gt;I try to find all function in OfficeOpenXml but i can't solve this problem.Please tell me solution for my problem. I must report to my teacher this week. Thanks in advance.&lt;/p&gt;
&lt;/div&gt;</description><author>ngoxuanthuan</author><pubDate>Mon, 22 Oct 2012 08:52:04 GMT</pubDate><guid isPermaLink="false">New Post: How to draw bolder with excel package 20121022085204A</guid></item><item><title>New Post: How to read images in excel sheet</title><link>http://excelpackage.codeplex.com/discussions/400055</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;&amp;nbsp; I have a image in excel sheet.But i don't know, how to read that column and fetch those images.Can anyone help me on this?&lt;/p&gt;
&lt;/div&gt;</description><author>ittechsathish</author><pubDate>Fri, 19 Oct 2012 13:40:38 GMT</pubDate><guid isPermaLink="false">New Post: How to read images in excel sheet 20121019014038P</guid></item><item><title>New Post: Save error</title><link>http://excelpackage.codeplex.com/discussions/7005</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I have downloaded the source code -&amp;nbsp;ExcelPackageSource.zip from the download page and replaced the code as told by &lt;a class="UserProfileLink" href="http://www.codeplex.com/site/users/view/dereksan"&gt;dereksan&lt;/a&gt;, but I still get the exception&amp;nbsp; "Object reference not set to an instance of an object." while saving.&amp;nbsp; My Code :&lt;/p&gt;
&lt;p&gt;&amp;nbsp;Dim newFile As New FileInfo(CopyToPath)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Using xlPackage As New ExcelPackage(newFile)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim worksheet As ExcelWorksheet = xlPackage.Workbook.Worksheets("Factoring Sch")&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; worksheet.Cell(11, 3).Value = NAMEOFCLIENT&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; worksheet.Cell(12, 3).Value = ClientRegisteredAddress&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; worksheet.Cell(34, 4).Value = FACILITYDATE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; xlPackage.Save()&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End Using&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I m badly stuck. pl help&lt;/p&gt;
&lt;p&gt;Regards&lt;/p&gt;&lt;/div&gt;</description><author>kirti_jagatap</author><pubDate>Wed, 26 Sep 2012 09:11:43 GMT</pubDate><guid isPermaLink="false">New Post: Save error 20120926091143A</guid></item><item><title>New Post: Interfacing ExcelPackage with DataGridView</title><link>http://excelpackage.codeplex.com/discussions/392271</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;This may be a stupid question, but is there a way to interface the information&amp;nbsp;received&amp;nbsp;from querying an excel sheet with a DataGridView? E.G. using a reader, or something along those lines.&lt;/p&gt;
&lt;/div&gt;</description><author>CProgramming</author><pubDate>Mon, 20 Aug 2012 01:47:29 GMT</pubDate><guid isPermaLink="false">New Post: Interfacing ExcelPackage with DataGridView 20120820014729A</guid></item><item><title>New Post: Diagrams</title><link>http://excelpackage.codeplex.com/discussions/390864</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I want to do something like shown in Sample 3. &amp;nbsp;When I call InsertRow() to add a new row, formulas are updated properly by ExcelPackage, but Diagrams are not. Why? Is there any chance to get that working, to get the same behavior as adding a new row
 in Excel (where diagrams are updated as well).&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Best Regards&lt;/p&gt;
&lt;p&gt;Andreas&lt;/p&gt;
&lt;/div&gt;</description><author>acenet</author><pubDate>Thu, 09 Aug 2012 13:19:19 GMT</pubDate><guid isPermaLink="false">New Post: Diagrams 20120809011919P</guid></item><item><title>New Post: Page Layout</title><link>http://excelpackage.codeplex.com/discussions/389306</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I'm trying to change the page setup :&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;orientation of my document (landscape)&amp;nbsp; &lt;/li&gt;&lt;li&gt;Fit to X page(s) wide by Y tall &lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;Is it possible with ExcePackage ? I can not do it.&lt;/p&gt;
&lt;p&gt;Thank you for your help.&lt;/p&gt;
&lt;/div&gt;</description><author>DevHobby</author><pubDate>Fri, 27 Jul 2012 13:33:56 GMT</pubDate><guid isPermaLink="false">New Post: Page Layout 20120727013356P</guid></item></channel></rss>