Null Reference, can not create L - value, Target Item is Null

Hi,

I have created an excel file in Init, and assigning the cell value in 3 different places(Process state) based on the status, but i am getting this error, can anyone solve this issue.

I have 3 type of Transactions, which are “Already processed”, “Rejected”, and “Approved”, if i dont face the Already Processed Transaction, i am not getting this error, but once i come across “Already Processed Transaction”, it stopped writing the status from that transaction.

TIAStaus%20Error2

1 Like

hello @Santhosh_Hyd
I think you can’t assign value in Data Table like that
you should be used add data row activity to insert value on a specific column /index

Thanks

2 Likes

Hi @Santhosh_Hyd
Use for each row in Summary_DT

row(“Status”).ToString=“Approved”

add data row{row(“status”).ToString}

Thanks
Ashwin S

1 Like