How to dynamically read an specific cell from a large number of data

image

I want to read the last most data from the column Balance and this column size is dynamic. Is there any solution available from where I can remake it for my own solution?

Or any possible idea to solve this case?

Thank you

Hi @Tanzill_Ahsan ,

Try below assignment.

Balance = YourDT(YourDT.Rows.Count - 1)(“Balance”)

1 Like

Hi @Shraddha_Gore

I think it should be first row and then column ,

Balance = YourDT(YourDT.Rows.Count - 1)(“Balance”)

2 Likes

Hi @prasath_S ,

Thank you for correcting me.
I interchanged row & column by mistakely.

Should I write this code under for each row loop?

Write it in assign activity.

Thank you

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.