Hi there!
Have you entered the correct data table name in your read range output?
Let me know if the problem presist.
HI,
Can you try the following expression?
lines = dt.AsEnumerable.Where(Function(r) r isnot Nothing AndAlso not String.IsNullOrEmpty(r(0).ToString)).Last().Item(0).ToString
Regards,
Thanks Guys, i got is solved by removing activities "read range"range A:A. However i still do not understand as the output i want is from column a.
HI,
Can you try to replace the red arrow pointed expression in the following image with the following?
(Please keep to use ReadRange)
dtData.AsEnumerable.Where(Function(r) r isnot Nothing AndAlso not String.IsNullOrEmpty(r(0).ToString)).Last().Item(0).ToString
Regards,
1 Like
Yes.Thank you.Yochi.
This is a solution.
1 Like
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.