I would like to write a formula in a Excel cell. I managed to write simple formula but I have an issue with the following formula :
=IF(OR(ISBLANK(I20631);ISBLANK(F20631));"";I20631=F20631)
In my C# programm it tried this :
ExcelWorksheet.Cells[row, column] = "=IF(OR(ISBLANK(I" + row +");ISBLANK(F" + row +"));\"\";I"+ row +"=F" + row +")";
I have an exeption because of the \"\" (I think so)
When I write in the excel cell, Excel cannot interpeter \" as the double quote symbole " And I can't write a string with visual studio whithout writting the \"
Is it possible to have another way to write a string with double quote character whitout using \" ?
(I alos tried "
but it is still interpreted as \" )
Thank you in advance,
Thomas