I am using NPOI to create excel sheet using c#. I merged first two rows upto some columns. I am trying to get the next columns second row. See the picture for the reference.
When I tried with
worksheet.GetRow(0)
It returned null.
worksheet.GetRow(1)
is returning a cell. But the value is not showing up. Can anybody tell me, where I am going wrong?