The Data is stored in a Dictionary and arranged by month. (the string is what needs to be inserted.)
I have a preexisting excel file: it has all the dates of the year on the first column, and various entries in the following column. This data needs to be preserved.
My task is to basically insert the Dictionary into this excel file. What complicates things is that the Date value in the dictionary, needs to correspond to the date value in the excel column (date and month). To explicate: (“xxxx”, 1980-05-12) needs to be inserted into the excel column with the first cell as “12-May” (this was generated via Fill->series).
And I have no idea. I’m spluttering by on bits of programming I’d picked up a couple of years ago. I’ve already extracted the data from the web page, and sorted it and all – automating some of the boring manual work. But I am faltering at the last mile, and seriously do not want to manually enter a couple of thousand data points when I know a simple script would suffice.
So, any help would be appreciated.
take a look at this thread How to iterate through a column in an Excel application through C# Console?