I just created a code in c++ and i was wondering if there is any way a can convert that into a excel document.

Recommended Answers

All 2 Replies

I'm assuming you mean you have created some kind of table in c++? I would write it out as a CSV (comma separated value) file and the import it into excel using the CSV reader.

Dave

Member Avatar for iamthwee

The easiest way would be to just create a csv file or, better still a tab delimited file just in case the file itself has commas. Then you could open it up with excel.

If that is not an option, dotnet has some useful excel creation functions.

You can even look at using java or python as well.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.