In a particular column we have to insert multiple values in a single cell as shown in attachment.
Hi Ronak,
you could either add up the values (depending on the format of the values with "value 1")
Excelj.TableCell(Value 1 + Value 2 + Value 3, 33, ...cell parameters...);
or you could write/ collect the different values in an array and write the array into the respective cell.
Excelj.TableCell(ThisArrayContainsAllValues, 33, ...cell parameters...);
Hope this helps.
Regards
Florian