<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>EPPlus-Create advanced Excel 2007 spreadsheets on the server</title><link>http://epplus.codeplex.com/project/feeds/rss</link><description>EPPlus is a .net library that reads and writes Excel 2007&amp;#47;2010 files using the Open Office Xml format &amp;#40;xlsx&amp;#41;.    EPPlus supports ranges, cell styling, charts, pictures, shapes, comments, tables, protection, encryption and a lot of other stuff.   </description><item><title>New Post: Conditional format color for Less Than</title><link>http://epplus.codeplex.com/discussions/444624</link><description>&lt;div style="line-height: normal;"&gt;Nevermind, figured it out. :) You can set condition.Style.Font.Color.Color to a System.Drawing.Color object.&lt;br /&gt;
&lt;br /&gt;
Not sure how I missed that, sorry for the silly question. :)&lt;br /&gt;
&lt;/div&gt;</description><author>Tridus</author><pubDate>Wed, 22 May 2013 18:48:02 GMT</pubDate><guid isPermaLink="false">New Post: Conditional format color for Less Than 20130522064802P</guid></item><item><title>Reviewed: EPPlus 3.1 (May 22, 2013)</title><link>https://epplus.codeplex.com/releases/view/89923#ReviewBy-Tridus</link><description>Rated 5 Stars &amp;#40;out of 5&amp;#41; - Great library with a lot of features and good performance.</description><author>Tridus</author><pubDate>Wed, 22 May 2013 17:37:12 GMT</pubDate><guid isPermaLink="false">Reviewed: EPPlus 3.1 (May 22, 2013) 20130522053712P</guid></item><item><title>New Post: Conditional format color for Less Than</title><link>http://epplus.codeplex.com/discussions/444624</link><description>&lt;div style="line-height: normal;"&gt;Hi. I'm trying to set a color for a less than conditional format. Here's the format code:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;var condition = sheet.ConditionalFormatting.AddLessThan(addr);
condition.Formula = &amp;quot;50&amp;quot;;&lt;/code&gt;&lt;/pre&gt;

By default, this doesn't set the conditional format with any color, so you can't see it. I know the condition itself is working, since I can add something like italics and that shows up.&lt;br /&gt;
&lt;br /&gt;
The issue is that unlike the other conditions, there is no condition.Color for Less Than that I can find. Instead you have to set Style.Font.Color, and that doesn't take a Color object to set it. It takes some kind of ExcelDxf object that I'm really not clear on how to use.&lt;br /&gt;
&lt;br /&gt;
Any advice on how to do this? Also, why is this one inconsistent from the ones like Two Color Scale, which just takes a Color object?&lt;br /&gt;
&lt;br /&gt;
Thanks.&lt;br /&gt;
&lt;/div&gt;</description><author>Tridus</author><pubDate>Wed, 22 May 2013 17:14:01 GMT</pubDate><guid isPermaLink="false">New Post: Conditional format color for Less Than 20130522051401P</guid></item><item><title>New Post: Cannot open password protected file (Excel 2007)</title><link>http://epplus.codeplex.com/discussions/438297</link><description>&lt;div style="line-height: normal;"&gt;Hi BVictor,&lt;br /&gt;
&lt;br /&gt;
I still found no solution to this problem.&lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
&lt;/div&gt;</description><author>dorakay</author><pubDate>Wed, 22 May 2013 11:40:25 GMT</pubDate><guid isPermaLink="false">New Post: Cannot open password protected file (Excel 2007) 20130522114025A</guid></item><item><title>New Post: Cannot open password protected file (Excel 2007)</title><link>http://epplus.codeplex.com/discussions/438297</link><description>&lt;div style="line-height: normal;"&gt;I have the same issue. The unlock works in Excel 2010, but not within the Framework. &lt;br /&gt;
&lt;br /&gt;
Besides, after the exception &amp;quot;Invalid Password&amp;quot; is thrown, the file remains stuck inside the process. (not sure if the framework has something to do about this.)&lt;br /&gt;
&lt;br /&gt;
Did you find a solution?&lt;br /&gt;
&lt;/div&gt;</description><author>BVictor</author><pubDate>Tue, 21 May 2013 12:20:06 GMT</pubDate><guid isPermaLink="false">New Post: Cannot open password protected file (Excel 2007) 20130521122006P</guid></item><item><title>New Post: How to insert blank values in a cell</title><link>http://epplus.codeplex.com/discussions/444334</link><description>&lt;div style="line-height: normal;"&gt;Your DLL is amazing. I am able to create excel file which fulfill my requirements. Minor problem occurred below&lt;br /&gt;
&lt;br /&gt;
I want to insert blank values in a cell and merge it but i am unable to do it.&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;sheet.Cells[A1:A3].Value = &amp;quot;&amp;quot;;
sheet.Cells[A1:A3].Merge = true;&lt;/code&gt;&lt;/pre&gt;

Doesn't work&lt;br /&gt;
&lt;br /&gt;
Same i want to add a blank values in datavalidationlist&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;
var listData = sheet.Cells[C1:C3].DataValidation.AddListDataValidation();
                        listData.Formula.Values.Add(&amp;quot;&amp;quot;);
                        listData.Formula.Values.Add(&amp;quot;A&amp;quot;);
                        listData.Formula.Values.Add(&amp;quot;B&amp;quot;);
                        listData.Formula.Values.Add(&amp;quot;C&amp;quot;);
                        listData.Formula.Values.Add(&amp;quot;D&amp;quot;);
                        listData.ShowErrorMessage = true;
                        listData.Error = &amp;quot;Please select a value from the list&amp;quot;; 
&lt;/code&gt;&lt;/pre&gt;

Pleae let me know how to do this.&lt;br /&gt;
&lt;/div&gt;</description><author>anilp</author><pubDate>Mon, 20 May 2013 20:15:02 GMT</pubDate><guid isPermaLink="false">New Post: How to insert blank values in a cell 20130520081502P</guid></item><item><title>New Post: How to insert blank values in a cell</title><link>http://epplus.codeplex.com/discussions/444333</link><description>&lt;div style="line-height: normal;"&gt;Your DLL is amazing. I am able to create excel file which fulfill my requirements. Minor problem occurred below&lt;br /&gt;
&lt;br /&gt;
I want to insert blank values in a cell and merge it but i am unable to do it.&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;sheet.Cells[A1:A3].Value = &amp;quot;&amp;quot;;
sheet.Cells[A1:A3].Merge = true;&lt;/code&gt;&lt;/pre&gt;

Doesn't work&lt;br /&gt;
&lt;br /&gt;
Same i want to add a blank values in datavalidationlist&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;
var listData = sheet.Cells[C1:C3].DataValidation.AddListDataValidation();
                        listData.Formula.Values.Add(&amp;quot;&amp;quot;);
                        listData.Formula.Values.Add(&amp;quot;A&amp;quot;);
                        listData.Formula.Values.Add(&amp;quot;B&amp;quot;);
                        listData.Formula.Values.Add(&amp;quot;C&amp;quot;);
                        listData.Formula.Values.Add(&amp;quot;D&amp;quot;);
                        listData.ShowErrorMessage = true;
                        listData.Error = &amp;quot;Please select a value from the list&amp;quot;; 
&lt;/code&gt;&lt;/pre&gt;

Pleae let me know how to do this.&lt;br /&gt;
&lt;/div&gt;</description><author>anilp</author><pubDate>Mon, 20 May 2013 20:15:00 GMT</pubDate><guid isPermaLink="false">New Post: How to insert blank values in a cell 20130520081500P</guid></item><item><title>New Post: Specified NumberFormat defaulting to Date</title><link>http://epplus.codeplex.com/discussions/444309</link><description>&lt;div style="line-height: normal;"&gt;I am having a difficult time setting the Number Format for cells in a worksheet that has been loaded from a template. &lt;br /&gt;
&lt;br /&gt;
If I try to set the Numberformat property for a cell to &amp;quot;#,##0.00;&lt;a href="#,##0.00" rel="nofollow"&gt;Red&lt;/a&gt;&amp;quot; or &amp;quot;#,##0.00_);(#,##0.00)&amp;quot; or &amp;quot;#,##0.00;(#,##0.00)&amp;quot; the result winds up formatted as a date (mm/dd/yyyy). &lt;br /&gt;
&lt;br /&gt;
The method I am using to set the cell format/value in all cases is:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;using (var cell = WorkSheet.Cells[rowIdx, columnIdx])
{
       cell.Style.HorizontalAlignment = ExcelHorizontalAlignment.Right;
       cell.Style.Font.Size = 8;
       cell.Style.Numberformat.Format = &amp;quot;#,##0.00;[Red](#,##0.00)&amp;quot;;
       cell.Value = &amp;lt;decimal/string value&amp;gt;;  
}
&lt;/code&gt;&lt;/pre&gt;

Has anyone else encountered this issue? Is there a best practice with regard to cell format setting?&lt;br /&gt;
&lt;/div&gt;</description><author>tmaly</author><pubDate>Mon, 20 May 2013 17:06:35 GMT</pubDate><guid isPermaLink="false">New Post: Specified NumberFormat defaulting to Date 20130520050635P</guid></item><item><title>New Post: Formating lines in a LineChart</title><link>http://epplus.codeplex.com/discussions/287917</link><description>&lt;div style="line-height: normal;"&gt;Hi,&lt;br /&gt;
&lt;br /&gt;
I also need these functions, different lines color, line styles (dotted, dashed, solid...).&lt;br /&gt;
Any news about this??&lt;br /&gt;
&lt;br /&gt;
Best regards&lt;br /&gt;
Cristian Barzaghi&lt;br /&gt;
&lt;/div&gt;</description><author>ilbarzo</author><pubDate>Mon, 20 May 2013 12:00:51 GMT</pubDate><guid isPermaLink="false">New Post: Formating lines in a LineChart 20130520120051P</guid></item><item><title>New Post: Expand Excel Table</title><link>http://epplus.codeplex.com/discussions/444045</link><description>&lt;div style="line-height: normal;"&gt;I would like populate an excel table within a template.&lt;br /&gt;
&lt;br /&gt;
The table will be linked to charts and pivots that exist within the template prior to population by EP plus.&lt;br /&gt;
&lt;br /&gt;
When I try to expand the excel table using insert row method the new rows are inserted into the spread sheet but the table row count remains the same (3 rows)&lt;br /&gt;
&lt;br /&gt;
How can I expand an existing excel table to the datatable record count?&lt;br /&gt;
&lt;br /&gt;
Thanks&lt;br /&gt;
&lt;br /&gt;
Nick&lt;br /&gt;
&lt;/div&gt;</description><author>NickWard</author><pubDate>Fri, 17 May 2013 13:10:06 GMT</pubDate><guid isPermaLink="false">New Post: Expand Excel Table 20130517011006P</guid></item><item><title>Commented Unassigned: Invalid URL Exception  [14858]</title><link>http://epplus.codeplex.com/workitem/14858</link><description>Hi&amp;#33;&lt;br /&gt;&lt;br /&gt;I have a problem, if I try to open an XLSX file with EPPlus. The File was created with Microsoft Office 2010.&lt;br /&gt;&lt;br /&gt;My code is&amp;#58;&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;   foreach &amp;#40;string fajl in fajlok&amp;#41;&lt;br /&gt;                    &amp;#123;&lt;br /&gt;                        FileInfo fn &amp;#61; new FileInfo&amp;#40;&amp;#64;fajl&amp;#41;&amp;#59;&lt;br /&gt;                        string indicated_user &amp;#61; fn.Name.Split&amp;#40;&amp;#39;_&amp;#39;&amp;#41;&amp;#91;0&amp;#93;&amp;#59;&lt;br /&gt;                        ExcelPackage ep &amp;#61; new ExcelPackage&amp;#40;fn&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;                        Constans.GLOBALLOG.LogWrite&amp;#40;ep.Workbook.Worksheets.Count&amp;#40;&amp;#41;.ToString&amp;#40;&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;                        if &amp;#40;ep.Workbook.Worksheets.Count&amp;#40;&amp;#41; &amp;#61;&amp;#61; 3&amp;#41;&lt;br /&gt;                        &amp;#123;&lt;br /&gt;.....&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;The Exception occurs at ep.Workbook.Worksheets.Count&amp;#40;&amp;#41;.&lt;br /&gt;I read, that this problem has already fixed, however, it happened...&lt;br /&gt;&lt;br /&gt;Is any fix for this problem&amp;#63;&lt;br /&gt;I use the latest DLL version&amp;#58; EPPlus 3.1 Apr 11, 2012, Stable &lt;br /&gt;&lt;br /&gt;Thanks for the answer&amp;#33;&lt;br /&gt;Zsolt Abdai&lt;br /&gt;Comments: Hi&amp;#33;&amp;#13;&amp;#10;&amp;#13;&amp;#10;I fixed this problem.&amp;#13;&amp;#10;The main reason for the exception is, that Microsoft allows you to put INVALID hyperlink to the cells.&amp;#13;&amp;#10;I put this value in a cell&amp;#58; ecsomany&amp;#64;google&amp;#58;huszar and I hit enter in my Excel, than a hyperlink was created, however, the link is invalid. &amp;#40;mailto&amp;#58; ecsomany&amp;#64;google&amp;#58;huszar&amp;#41;&amp;#13;&amp;#10;&amp;#13;&amp;#10;Sad, that in Office 2013 is this bug present too...&amp;#13;&amp;#10;&amp;#13;&amp;#10;In your code&amp;#58; if you found Hyperlink in the worksheet, you try to parse it, and the invalid URI exception occours. &amp;#13;&amp;#10;I checked out the source of your latest version and modified only one method, you can use it.&amp;#13;&amp;#10;&amp;#13;&amp;#10;In ExcelWorksheet.cs at line 784 is a method, which load and validate the hyperlinks&amp;#58; called LoadHyperLinks&amp;#13;&amp;#10;&amp;#13;&amp;#10;In the third if section I wrote a catch, if any exception occours by parsing the Uri. In this case I set  cell.Hyperlink &amp;#61; new Uri&amp;#40;&amp;#34;&amp;#34;&amp;#41;&amp;#59;&amp;#13;&amp;#10;&amp;#13;&amp;#10;&amp;#96;&amp;#96;&amp;#96;&amp;#13;&amp;#10; if &amp;#40;xr.GetAttribute&amp;#40;&amp;#34;id&amp;#34;, ExcelPackage.schemaRelationships&amp;#41; &amp;#33;&amp;#61; null&amp;#41;&amp;#13;&amp;#10;                    &amp;#123;&amp;#13;&amp;#10;                        cell.HyperLinkRId &amp;#61; xr.GetAttribute&amp;#40;&amp;#34;id&amp;#34;, ExcelPackage.schemaRelationships&amp;#41;&amp;#59;&amp;#13;&amp;#10;                        try&amp;#13;&amp;#10;                        &amp;#123;&amp;#13;&amp;#10;                            var uri &amp;#61; Part.GetRelationship&amp;#40;cell.HyperLinkRId&amp;#41;.TargetUri&amp;#59;&amp;#13;&amp;#10;                            try&amp;#13;&amp;#10;                            &amp;#123;&amp;#13;&amp;#10;                                if &amp;#40;uri.IsAbsoluteUri&amp;#41;&amp;#13;&amp;#10;                                &amp;#123;&amp;#13;&amp;#10;                                    cell.Hyperlink &amp;#61; new ExcelHyperLink&amp;#40;HttpUtility.UrlDecode&amp;#40;uri.OriginalString&amp;#41;&amp;#41;&amp;#59;&amp;#13;&amp;#10;                                &amp;#125;&amp;#13;&amp;#10;                                else&amp;#13;&amp;#10;                                &amp;#123;&amp;#13;&amp;#10;                                    cell.Hyperlink &amp;#61; new ExcelHyperLink&amp;#40;HttpUtility.UrlDecode&amp;#40;uri.OriginalString&amp;#41;, UriKind.Relative&amp;#41;&amp;#59;&amp;#13;&amp;#10;                                &amp;#125;&amp;#13;&amp;#10;                            &amp;#125;&amp;#13;&amp;#10;                            catch&amp;#13;&amp;#10;                            &amp;#123;&amp;#13;&amp;#10;                                &amp;#47;&amp;#47;We should never end up here, but to aviod unhandled exceptions we just set the uri here. JK&amp;#13;&amp;#10;                                cell.Hyperlink &amp;#61; uri&amp;#59;&amp;#13;&amp;#10;                            &amp;#125;&amp;#13;&amp;#10;                        &amp;#125;&amp;#13;&amp;#10;                        catch&amp;#13;&amp;#10;                        &amp;#123;&amp;#13;&amp;#10;                            &amp;#47;&amp;#47;if the hiperlink is invalid, just ignore and reset the link to empty URL&amp;#13;&amp;#10;                            cell.Hyperlink &amp;#61; new Uri&amp;#40;&amp;#34;&amp;#34;&amp;#41;&amp;#59;&amp;#13;&amp;#10;                        &amp;#125;&amp;#13;&amp;#10;                        Part.DeleteRelationship&amp;#40;cell.HyperLinkRId&amp;#41;&amp;#59; &amp;#47;&amp;#47;Delete the relationship, it is recreated when we save the package.&amp;#13;&amp;#10;                    &amp;#125;&amp;#13;&amp;#10;&amp;#96;&amp;#96;&amp;#96;&amp;#13;&amp;#10;&amp;#13;&amp;#10;I attached my solution CS file.&amp;#13;&amp;#10;&amp;#13;&amp;#10;Best regards,&amp;#13;&amp;#10;Zsolt Abdai&amp;#13;&amp;#10;&amp;#13;&amp;#10;</description><author>abdaizs</author><pubDate>Thu, 16 May 2013 16:00:59 GMT</pubDate><guid isPermaLink="false">Commented Unassigned: Invalid URL Exception  [14858] 20130516040059P</guid></item><item><title>Created Unassigned: Invalid URL Exception  [14858]</title><link>http://epplus.codeplex.com/workitem/14858</link><description>Hi&amp;#33;&lt;br /&gt;&lt;br /&gt;I have a problem, if I try to open an XLSX file with EPPlus. The File was created with Microsoft Office 2010.&lt;br /&gt;&lt;br /&gt;My code is&amp;#58;&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;   foreach &amp;#40;string fajl in fajlok&amp;#41;&lt;br /&gt;                    &amp;#123;&lt;br /&gt;                        FileInfo fn &amp;#61; new FileInfo&amp;#40;&amp;#64;fajl&amp;#41;&amp;#59;&lt;br /&gt;                        string indicated_user &amp;#61; fn.Name.Split&amp;#40;&amp;#39;_&amp;#39;&amp;#41;&amp;#91;0&amp;#93;&amp;#59;&lt;br /&gt;                        ExcelPackage ep &amp;#61; new ExcelPackage&amp;#40;fn&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;                        Constans.GLOBALLOG.LogWrite&amp;#40;ep.Workbook.Worksheets.Count&amp;#40;&amp;#41;.ToString&amp;#40;&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;                        if &amp;#40;ep.Workbook.Worksheets.Count&amp;#40;&amp;#41; &amp;#61;&amp;#61; 3&amp;#41;&lt;br /&gt;                        &amp;#123;&lt;br /&gt;.....&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;The Exception occurs at ep.Workbook.Worksheets.Count&amp;#40;&amp;#41;.&lt;br /&gt;I read, that this problem has already fixed, however, it happened...&lt;br /&gt;&lt;br /&gt;Is any fix for this problem&amp;#63;&lt;br /&gt;I use the latest DLL version&amp;#58; EPPlus 3.1 Apr 11, 2012, Stable &lt;br /&gt;&lt;br /&gt;Thanks for the answer&amp;#33;&lt;br /&gt;Zsolt Abdai&lt;br /&gt;</description><author>abdaizs</author><pubDate>Thu, 16 May 2013 14:45:21 GMT</pubDate><guid isPermaLink="false">Created Unassigned: Invalid URL Exception  [14858] 20130516024521P</guid></item><item><title>Created Unassigned: Slight issue with AutoFitColumns [14857]</title><link>http://epplus.codeplex.com/workitem/14857</link><description>I just found this library, and am amazed at how easy it is to work with. Thanks&amp;#33;&lt;br /&gt;&lt;br /&gt;I did notice one slight issue though. I found&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;ws.Cells.AutoFitColumns&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;to try and Auto Fit the columns &amp;#40;I know, it was a stretch&amp;#41;. However, there is a slight anomaly with it.&lt;br /&gt;&lt;br /&gt;In my attached image, you&amp;#39;ll notice that the last column has an increased width, however it doesn&amp;#39;t max to the size of all of the text.&lt;br /&gt;&lt;br /&gt;Since I&amp;#39;m using the default method call, is there a &amp;#34;hidden&amp;#34; maximum that it hit and stopped&amp;#63; If that wasn&amp;#39;t the last column, would it have filled in all of the way like the other columns&amp;#63;&lt;br /&gt;</description><author>krillgar</author><pubDate>Wed, 15 May 2013 19:19:13 GMT</pubDate><guid isPermaLink="false">Created Unassigned: Slight issue with AutoFitColumns [14857] 20130515071913P</guid></item><item><title>New Post: Need help with multi-level outlining</title><link>http://epplus.codeplex.com/discussions/443761</link><description>&lt;div style="line-height: normal;"&gt;I'm having a really tough time trying to get multi-level outlining applied properly. I have 5 loops of collections that I'm trying to apply outlining to, but it is only placing everything under outline level 1 and ignoring the rest.&lt;br /&gt;
&lt;br /&gt;
Below is a snippet of what I have:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;foreach (var publisher in Publishers)
{
     worksheet.cells[pubRow, 1].Value = publisher.Name;
     worksheet.Row(pubRow).OutlineLevel = 1;

     foreach (var author in Authors)
     {
          worksheet.cells[authorRow, 2].Value = author.Name;
          worksheet.Row(pubRow).OutlineLevel = 2;

          foreach (var book in Books)
          {
               worksheet.cells[bookRow, 3].Value = book.Title;
               worksheet.cells[bookRow, 4].Value = book.ISBN;
               worksheet.cells[bookRow, 5].Value = book.Edition;
               worksheet.cells[bookRow, 6].Value = book.Pages;
               worksheet.row(bookRow).OutlineLevel = 3;
               bookRow++;
          }
     }
}&lt;/code&gt;&lt;/pre&gt;

Can anyone help?&lt;br /&gt;
&lt;/div&gt;</description><author>CoolBreeze812</author><pubDate>Wed, 15 May 2013 15:32:18 GMT</pubDate><guid isPermaLink="false">New Post: Need help with multi-level outlining 20130515033218P</guid></item><item><title>Reviewed: EPPlus 3.1 (May 15, 2013)</title><link>https://epplus.codeplex.com/releases/view/89923#ReviewBy-danielkennedy</link><description>Rated 5 Stars &amp;#40;out of 5&amp;#41; - Absolutely top notch library. Exposes almost all Excel functionality without having office installed and is very quick and easy to use.</description><author>danielkennedy</author><pubDate>Wed, 15 May 2013 10:31:04 GMT</pubDate><guid isPermaLink="false">Reviewed: EPPlus 3.1 (May 15, 2013) 20130515103104A</guid></item><item><title>New Post: Doesn't seem to read font styles correctly</title><link>http://epplus.codeplex.com/discussions/443706</link><description>&lt;div style="line-height: normal;"&gt;When I read the xlsx file, all cells seem to have the same Cells[...].Style.Font.Itallic/Bold/Strike etc.&lt;br /&gt;
&lt;br /&gt;
In other words, itallic and other properties always seem to be true, whether the cell's style is itallic or not.&lt;br /&gt;
&lt;br /&gt;
Anyone else had any trouble with this?&lt;br /&gt;
&lt;/div&gt;</description><author>SamiHuutoniemi</author><pubDate>Wed, 15 May 2013 10:18:48 GMT</pubDate><guid isPermaLink="false">New Post: Doesn't seem to read font styles correctly 20130515101848A</guid></item><item><title>New Post: Xltx files</title><link>http://epplus.codeplex.com/discussions/387657</link><description>&lt;div style="line-height: normal;"&gt;Hi xav2075&lt;br /&gt;
 &lt;br /&gt;
Your sample is working unless you don't attempt to work with the worksheets using EPPlus afterwards.&lt;br /&gt;
I also found this sample on OpenXML forums and have used it for creating Excel spreadsheets from Excel XLTX templates.&lt;br /&gt;
&lt;br /&gt;
But when I try to use the created spreadsheet using EPPlus after the change of documenttype, EPPlus cant find the sheets collection.&lt;br /&gt;
&lt;br /&gt;
Studying the XML code after changing the documenttype using Open XML Producticity code, one can se that the the rootname of the workbook is changed from &amp;quot;workbook&amp;quot; to &amp;quot;workbook2&amp;quot;.&lt;br /&gt;
This seems to be the cause of EPPlus not finding any sheets after the &amp;quot;conversion&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Do you (or anybody) have some mor input regarding this?&lt;br /&gt;
&lt;br /&gt;
Thanks in advance&lt;br /&gt;
&lt;br /&gt;
Peter karlström&lt;br /&gt;
Midrange AB&lt;br /&gt;
Sweden&lt;br /&gt;
&lt;/div&gt;</description><author>Peter_Karlstrom</author><pubDate>Tue, 14 May 2013 13:30:45 GMT</pubDate><guid isPermaLink="false">New Post: Xltx files 20130514013045P</guid></item><item><title>Created Unassigned: Adding comments gives XmlException. [14856]</title><link>http://epplus.codeplex.com/workitem/14856</link><description>Opening XLSX with Excel and saving it resolves the file issue but when I run my program it somehow brokes the excel file again on the second time. It&amp;#39;s weird. So this error comes in third time when I run the program.&lt;br /&gt;&lt;br /&gt;CODE&amp;#58;&lt;br /&gt;&lt;br /&gt;        public static void SetComment&amp;#40;ExcelRange cell, string text&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            if &amp;#40;text &amp;#33;&amp;#61; &amp;#34;&amp;#34;&amp;#41;&lt;br /&gt;            &amp;#123;&lt;br /&gt;               &lt;br /&gt;                if &amp;#40;cell.Comment &amp;#61;&amp;#61; null&amp;#41; cell.AddComment&amp;#40;text, &amp;#34;CRM&amp;#34;&amp;#41;&amp;#59; else cell.Comment.Text &amp;#61; text.Replace&amp;#40;&amp;#34;&amp;#60;&amp;#34;,&amp;#34;&amp;#34;&amp;#41;.Replace&amp;#40;&amp;#34;&amp;#62;&amp;#34;,&amp;#34;&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;                cell.Comment.AutoFit &amp;#61; true&amp;#59;&lt;br /&gt;            &amp;#125;&lt;br /&gt;        &amp;#125;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;TRACE&amp;#58;&lt;br /&gt;&lt;br /&gt;Unhandled Exception&amp;#58; System.Xml.XmlException&amp;#58; Unexpected end tag. Line 8721, pos&lt;br /&gt;ition 7.&lt;br /&gt;   at System.Xml.XmlTextReaderImpl.Throw&amp;#40;Exception e&amp;#41;&lt;br /&gt;   at System.Xml.XmlTextReaderImpl.Throw&amp;#40;String res, String arg&amp;#41;&lt;br /&gt;   at System.Xml.XmlTextReaderImpl.ParseDocumentContent&amp;#40;&amp;#41;&lt;br /&gt;   at System.Xml.XmlTextReaderImpl.Read&amp;#40;&amp;#41;&lt;br /&gt;   at System.Xml.XmlLoader.LoadNode&amp;#40;Boolean skipOverWhitespace&amp;#41;&lt;br /&gt;   at System.Xml.XmlLoader.LoadDocSequence&amp;#40;XmlDocument parentDoc&amp;#41;&lt;br /&gt;   at System.Xml.XmlLoader.Load&amp;#40;XmlDocument doc, XmlReader reader, Boolean prese&lt;br /&gt;rveWhitespace&amp;#41;&lt;br /&gt;   at System.Xml.XmlDocument.Load&amp;#40;XmlReader reader&amp;#41;&lt;br /&gt;   at OfficeOpenXml.XmlHelper.LoadXmlSafe&amp;#40;XmlDocument xmlDoc, Stream stream&amp;#41;&lt;br /&gt;   at OfficeOpenXml.Drawing.Vml.ExcelVmlDrawingBaseCollection..ctor&amp;#40;ExcelPackage&lt;br /&gt; pck, ExcelWorksheet ws, Uri uri&amp;#41;&lt;br /&gt;   at OfficeOpenXml.Drawing.Vml.ExcelVmlDrawingCommentCollection..ctor&amp;#40;ExcelPack&lt;br /&gt;age pck, ExcelWorksheet ws, Uri uri&amp;#41;&lt;br /&gt;   at OfficeOpenXml.ExcelWorksheet.CreateVmlCollection&amp;#40;&amp;#41;&lt;br /&gt;   at OfficeOpenXml.ExcelWorksheet.get_Comments&amp;#40;&amp;#41;&lt;br /&gt;   at OfficeOpenXml.ExcelRangeBase.get_Comment&amp;#40;&amp;#41;&lt;br /&gt;   at CashflowUpdater.Program.SetComment&amp;#40;ExcelRange cell, String text&amp;#41;&lt;br /&gt;   at CashflowUpdater.Program.SaveData&amp;#40;ExcelWorkbook&amp;#38; wb&amp;#41;&lt;br /&gt;   at CashflowUpdater.Program.UpdateCashFlowXLS&amp;#40;DateTime StartDate, String FileP&lt;br /&gt;ath&amp;#41;&lt;br /&gt;   at CashflowUpdater.Program.Main&amp;#40;String&amp;#91;&amp;#93; args&amp;#41;&lt;br /&gt;</description><author>tuomaslaa</author><pubDate>Tue, 14 May 2013 12:27:55 GMT</pubDate><guid isPermaLink="false">Created Unassigned: Adding comments gives XmlException. [14856] 20130514122755P</guid></item><item><title>Created Unassigned: Is there a way to pass DataTable while creating CHART in a Worksheet? [14855]</title><link>http://epplus.codeplex.com/workitem/14855</link><description>Is there a functionality to pass a DataTable, to Create Chart or Multiple Charts in a single Worksheet &amp;#63;&lt;br /&gt;&lt;br /&gt;If yes , please guide me.&lt;br /&gt;If no, please let me know a workaround for the same, if possible.&lt;br /&gt;&lt;br /&gt;As I have to create Multiple Charts in a Single Worksheet to which I would pass 2-3 different DataTables without writing the DataTable in Excel Sheet.&lt;br /&gt;&lt;br /&gt;I am stuck with this scenario, rest all has worked perfect for me, using the Excellent EPPLUS dll.&lt;br /&gt;&lt;br /&gt;Many Thanks.&lt;br /&gt;&lt;br /&gt;Kind Regards,&lt;br /&gt;Vipul&lt;br /&gt;</description><author>vips3483</author><pubDate>Mon, 13 May 2013 14:16:13 GMT</pubDate><guid isPermaLink="false">Created Unassigned: Is there a way to pass DataTable while creating CHART in a Worksheet? [14855] 20130513021613P</guid></item><item><title>Created Unassigned: Character values - issue [14854]</title><link>http://epplus.codeplex.com/workitem/14854</link><description>While assigning a character value to a cell, EPPlus puts a value 0 to the cell.  The workaround we have opted for is to check for the type of the value and then convert character value to string and then store it in the cell.&lt;br /&gt;&lt;br /&gt;Is there any better way or known solution for this&amp;#63;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;</description><author>punitganshani</author><pubDate>Mon, 13 May 2013 11:27:11 GMT</pubDate><guid isPermaLink="false">Created Unassigned: Character values - issue [14854] 20130513112711A</guid></item></channel></rss>