0

I need assistance of understanding as to why I am getting an error here. Is it because I cannot write line a data table variable because on each row the variable is indeed a data table but on the write line I added a ".toString" at the end. There an alternative?

Also in my previous sequence the read Range is "nonDDContracts" so that it can be passed over to the next sequence which has the each row.

enter image description here

Wendy
  • 1
  • 1
  • 2

1 Answers1

0

It is a very generic .Net Error. This happens when you are trying to execute a method or using a property on the object or value that is null. For example you said you are writing .toString(). Just check using if else that your variable is not null and if it is null then don't do string else do .toString()

Atul Chaudhary
  • 3,698
  • 1
  • 31
  • 51