I’m writing an application that opens an existing .xlsx file and writes to certain cells.
Some cells write correctly, where others just stay blank?
Any ideas?
This is a snippet of code
The same code for the cells that are and arent working, except that the index’s changed
oSheet.Cells[3, 15] = "1"; // this doesnt write to the cell
oSheet.Cells[7, 7] = "1"; // this writes to the cell
All that i could think is that there is a formatting issue in the Excel file?
Anthony was right, I had my columns and rows switched.