Tagged Questions
The spreadsheetml tag has no wiki summary.
10
votes
3answers
16k views
Creating Excel document with OpenXml sdk 2.0
I have created an Excel document using OpenXml SDK 2.0, now I have to style It, but I can`t.
I don't know how to paint the background color or change the font size in different cells.
My code to ...
6
votes
4answers
3k views
OpenXML SDK Spreadsheet starter kits
I am trying to start working with excel documents through the OpenXML SDK Spreadsheet API.
But I havent found any good guides or even examples on how to create a xlsx file from scratch. Only how to ...
4
votes
2answers
619 views
XLSX- how to get rid of the default namespace prefix x:?
I'm generating XLSX spreadsheet using OOXML SDK, and I need to get rid of x: namespace prefix. How can I achieve this?
using (SpreadsheetDocument doc = SpreadsheetDocument.Open("template.xlsx", ...
3
votes
1answer
195 views
What's the difference between <c t=“str”> and <c><is> in Office Open XML?
What's the difference between these two Office Open XML fragments?
<c r="A2" t="str">
<v>btyler</v>
</c>
and
<c r="B2">
...
3
votes
1answer
127 views
What does <a:theme> mean in OpenXML?
I'm try to understand OpenXML spreadsheet inner file content.
IN some file I found this string . Other tags has same prefix.
Also tags may have prefixes p: w: etc.
Can you help me undestend the ...
3
votes
1answer
2k views
How do I read data from a spreadsheet using the OpenXML Format SDK?
I need to read data from a single worksheet in an Excel 2007 workbook using the Open XML SDK 2.0. I have spent a lot of time searching for basic guidelines to doing this, but I have only found help ...
2
votes
1answer
131 views
XSL: create a cross tab under Excel with XSLT
I have an xml file like this :
<products>
<cars>
<car>
<brand>Audi</brand>
<type>S3</type>
<attribs>
...
2
votes
1answer
181 views
How to generate SpreasheetML samples for all three date compatibility settings from Excel 2010?
According to the ECMA-376, Second Edition, Part 1 - Fundamentals And Markup Language Reference SpreadsheetML supports date serial values with three possible compatibility settings and various ranges.
...
2
votes
3answers
332 views
Existing API for reading dates from SpreadsheetML files?
Is there an existing API in Office Open XML SDK or a 3rd party to properly read dates from a SpreadsheetML / .xlsx file?
Since there are so many variables that affect detecting when a value is a ...
2
votes
1answer
240 views
Multiple Panes in Excel 2003 Spreadsheet XML
I want to generate an excel spreadsheet with three horizontal panes.
Report Header
Report Titles
Report Values
So that the Titles will scroll to the top of the document and then "freeze" while the ...
2
votes
1answer
1k views
How change excel 2007 document orientation to landscape by OpenXML sdk
I need help with changing excel 2007 document orientation to landscape. I have not found any helpful information about this. I am using OpenXML SDK for this.
The only thing I have found: when I create ...
1
vote
1answer
87 views
Inconsistent visualization of numerical values in Excel 2007 vs the underlying xml file
I am attempting to read an Excel 2007 file (xlsx) from outside of Excel and I am finding an inconsistency that I cannot explain.
If you enter the value of 19.99 into a cell and then look at the ...
1
vote
2answers
1k views
Add Hyperlink to Cell in Excel 2007 Using Open XML SDK 2.0
I can't seem to find any documentation or code samples on how to add a hyperlink to a cell in Excel 2007 using the Open XML SDK 2.0. I am using the following code, but is there a step I am missing?
...
1
vote
2answers
249 views
Theme confusion in SpreadsheetML
I've been fighting this all day. Inside my styles.xml file I have color information given like so:
<fgColor theme="0" tint="-0.249977111117893" />
ECMA 376 defines a theme color reference ...
1
vote
2answers
489 views
Spreadsheet ML Text Color (Colour) Rendering
I am writing a tool which generates some Spreadsheet ML (XML) to create an Excel spreadsheet for my users.
I have defined a style as follows:
<Style ss:ID="GreenText">
<Font ...
0
votes
1answer
71 views
Exporting tabular data in Numbers-readable format
I have app that exports data in CSV. Recently I added "Open In..." feature for opening .csv files in other apps. I would like to be able to have Numbers (on iPad) open exported files as well.
...
0
votes
2answers
282 views
With C# is it possible to put an object on the clipboard that will paste into excel as data and formulas?
In a WPF application, I need to generate data that can be put on the clipboard and pasted into excel. I need to paste something that can carry over data and formulas.
I was attempting OpenXML... but ...
0
votes
3answers
328 views
Parsing SpreadsheetML Using Perl
What's the best way to parse a file in SpreadsheetML format with Perl? I've tried Spreadsheet::ParseExcel, but it doesn't recognize the format. Here's the error I get when trying that module:
No ...
0
votes
1answer
335 views
OpenXML - CellFormats - Do I really need to configure one for every single permutation?
I'm currently working with v2.0 of the SDK to generate an Excel workbook and it was all going well until I came to apply the cell formatting.
I've created a few CellFormats and successfully applied ...
0
votes
1answer
638 views
Bug in HYPERLINK() in Excel 2003 SpreadsheetML implementation
This isn't really a question, more of an issue I ran across that I hope others can avoid.
If anyone can test in Office 2002, 2007, and 2008/Mac, that may add some important context.
Before replying, ...