---------------------------------------------------------------------
CodeID CodeName Market Name Date
--------------------------------------------------------------------
1 Sample1 Market1 22/2/2004
--------------------------------------------------------------------
2 Sample2 Market2 22/2/2003
--------------------------------------------------------------------
and so on..................
I want to convert this excel file in to the following xml format
<From Excel>
<CodeId>1</CodeId>
<CodeName>sample1</CodeName>
<MarketName>market1</MarketName>
<Date>22/2/2004</Date>
</From Excel>
<From Excel>
<CodeId>2</CodeId>
<CodeName>sample2</CodeName>
<MarketName>market2</MarketName>
<Date>22/2/2005</Date>
</From Excel>
and likewise all the selected cells from the excel file.I want to
implement it using c#.
Can anyone give the ideas (preferrably sample source code), helpfull
links so that I can do this task successfully.
Early ideas are greatly appreciated as I am stuck with this............
Regards
Jango
These ideas that just come into my mind. I'd use the second one.
--
WBR,
Michael Nemtsev :: blog: http://spaces.msn.com/laflour
"At times one remains faithful to a cause only because its opponents do not
cease to be insipid." (c) Friedrich Nietzsche
Try this link.You might find it useful
http://www.codeproject.com/csharp/Excel2XML.asp
Regards
Naresh