Hello @kshitijjain-0490 and welcome to Microsoft Q&A.
If I understand you correctly, your data looks like:
ColumnX, ColumnY, ColumnZ
DataX, DataYpart1,DataYpart2,DataYpart3, DataZ
If this is the case, it is not a valid CSV. You should try with a different delimiter such as |
or ;
or tab. Then it would look like:
ColumnX | ColumnY | ColumnZ
DataX | DataYpart1,DataYpart2,DataYpart3 | DataZ
Does this make sense?