Currently I have a button on a C# web form that exports all of the user specified values to an Excel file using Aspose. Everything works great until I get to where I need to update a value in the excel file that is a radio button.
I tried a couple different methods… Below I’m trying to update the radio button as checked\true\1, it is located on the worksheet named _sheetSummary on the 6th tab.
Aspose.Cells.Worksheet _sheetSummary = _book.Worksheets[6];
_sheetSummary.Cells[“B29”].Value = _Created;
_sheetSummary.CheckBoxes(“obs2”).Object.value = true;
“obs2” is the name of the radio button in the excel file. As I noted the other excel values update perfectly with no problem, but when I try to modify the radio button, I get nothing…
Any assistance would be greatly welcomed…