I'm newbie in C#. I tried to insert strings from DataTable into Excel cells formulas, but unsuccesfully. For example, I have
=ROUND(R[-2]C*IF(R[-1]C="";R[-1]C17;R[-1]C)/(IF(R[-1]C="";R[-1]C17;R[-1]C));2)
as value. I also tried to make
=ROUND(R[-2]C*IF(R[-1]C=\"\";R[-1]C17;R[-1]C)/(IF(R[-1]C=\"\";R[-1]C17;R[-1]C));2)
But I got an exception from HRESULT: 0x800A03EC In the last example debugger shows proper string, but I also got that exception.
Also, it works, when I put this code:
Globals.Wirksheet1.Cells.Range["A100"].Value2 = @"=ROUND(R[-2]C*IF(R[-1]C="""",R[-1]C17,R[-1]C)/(IF(R[-1]C="""",R[-1]C17,R[-1]C)),2)";
But I need to get values from DataTable, also I don't know how to add @ to string. Please, explain me how to solve this problem? Thanks
For the sake of an answer.
OP has stated: