Interacting With Excel

I am trying to make a program that will take data input through an SFML GUI and then print and format it into specific slots in an Excel document. Any good APIs for this? If not any suggestions would be great.
Last edited on
Does it have to be .xls\.xlsx format? If not it's a whole ton easier to use .tab or .csv to delimit your data.
I don't suppose it HAS to be. All I need to do is put data in specific cells.
In that case .tab is a tab delimited format. .csv stands for "Comma Seperated Value" Excel will know how to read either one of those with zero trouble at all.
Which do you suggest and how do I go about doing this?
I'd recommend .csv because it's "cleaner" to work with. When you want data to go into a new column just enter a comma, when you want a new row enter a new line.
Wow! That's easy. Do it just like a text file, but make the extension .csv?

If I wanted the words "Hello, World!" in the 4th column, 2 row I would just do:
1
2
|
|,,,Hello, World!
Last edited on
Just tested it out. Works insanely awesome. Thanks, your great!
Topic archived. No new replies allowed.