I have a question on this.. I'm using Visual Studio 2010, and the above code:
oWorkSheet.Cells[1,1] = "populated";
only works for Strings.. I can't seem to do it for numbers such as:
oWorkSheet.Cells[1,1] = "0.50";
I tried ToString() as well.. and btw the "populated" and "0.50" from user input in a textbox.. any help would be appreciated!