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”
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”
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
thank you so much sir…it worked~
Cheers @Yusuf_Rahmaniac
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.