How to get the last value of a cell?

Dear developers, how to get the last value of a cell. for example below I want to get the last value of “J” cell:

so the result should display 15,018 as it is the last value of the cell “J”

1 Like

Like this
If we have datatable named dt
In assign activity
Str_value = dt.Rows(dt.Rows.count-1)(“J columnname”).ToString

Cheers @Yusuf_Rahmaniac

2 Likes

thank you so much sir…it worked~

1 Like

Cheers @Yusuf_Rahmaniac

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