New Post: How to bold specific text inside a cell and delete some html tags...
Hi, Can I ask how can i bold a specific text inside a cell? i know that it can be accomplish by var workbook = new XLWorkbook(); var worksheet = workbook.Worksheets.Add("Sample Sheet");...
View ArticleNew Post: How to bold specific text inside a cell and delete some html tags...
Pick up the latest source code and use the following: var wb = new XLWorkbook(); var ws = wb.AddWorksheet("Sheet"); ws.FirstCell().Value = "<b>test</b>" + System.Environment.NewLine +...
View ArticleNew Post: How to bold specific text inside a cell and delete some html tags...
Wow this is great! Your solution is clean and you replied so fast. Yes i also breakpoint and saw that it was chop into bits but im not that good in linq thats why i posted. Thank you very much MDeleon....
View ArticleNew Post: How to bold specific text inside a cell and delete some html tags...
Btw i got an error "Property or indexer CLosexml.excel.ixlrichstring.text cannot be assigned because its readonly. im using ClosedXML for .Net Framework 4.0 (ClosedXML 0.69.1) in the downloads page Am...
View ArticleNew Post: Conditional Formatting: Color Row
Hi all. Is it possible to color an entire row depending on a cell value? I searched everywhere and nothing found. Thanks
View ArticleNew Post: Conditional Formatting: Color Row
See Conditional Formatting in the documentation page
View ArticleNew Post: Excel cannot open file because the file format or file extension is...
I'm creating an excel sheet and trying to open it without saving it but it doesn't seem to work. If I save the file first and then open the file everything works fine though. Any suggestions? Here's my...
View ArticleNew Post: Excel cannot open file because the file format or file extension is...
I don't understand, you're trying to "open" an Excel file without the file existing on disk? Excel can only open files on disk.
View ArticleNew Post: Excel cannot open file because the file format or file extension is...
If you're in IE you get that nice little toolbar to pop up at the bottom of the window that gives you the option to either "Open" the file or "Save" it. When I click "Open" I get that error message, if...
View ArticleNew Post: Excel cannot open file because the file format or file extension is...
1) Why not use WriteTo OutputStream? 2) What happens when you get the download dialog box and you click on "Open"? Does Excel opens and tries to open the file but can't?
View ArticleNew Post: Excel cannot open file because the file format or file extension is...
1) Same error message is generated. 2) Excel opens but the file does not and when I check my "Downloads" folder the file is not there.
View ArticleNew Post: Excel cannot open file because the file format or file extension is...
What happens when you click http://spreadsheetpage.com/downloads/xl/worksheet%20functions.xlsx?
View ArticleNew Post: Excel cannot open file because the file format or file extension is...
First I'm prompted with a dialog in the center of the browser with the options to "Open", "Save", and "Save As". When I select open the toolbar opens at the bottom of the window showing progress, then...
View ArticleNew Post: Excel cannot open file because the file format or file extension is...
I officially have no idea. The file is created correctly (since you can open it after saving it explicitly). But after you click "Open" instead, something's happening between IE saving the file in the...
View ArticleNew Post: Excel cannot open file because the file format or file extension is...
Negative, because it has to work in IE minimally. One question about your link though, you have the file in the link specified as an excel file. I'm creating mine when clicking a LinkButton on an ASPX...
View ArticleNew Post: Excel cannot open file because the file format or file extension is...
Shoot, you're right. It's being served differently. I don't know how to help you but I'm pretty sure it has something to do with your setup. That's because a lot of people serve Excel files in the same...
View ArticleNew Post: Excel cannot open file because the file format or file extension is...
No worries, I'll figure it out eventually. :)
View ArticleNew Post: Excel cannot open file because the file format or file extension is...
FYI, once I deployed my app to my production web server everything worked and fell into place so obviously something is up with my local setup. Thx for all your help earlier.
View Article