Hey @MitheshBolla,
If the latest row is getting added at last than you can use the following method.
dt = dt.AsEnumerable().Last();
If the latest row is getting added at first than you can use the following method.
dt = dt.AsEnumerable().First();
Thanks,
Sanjit
Try with below one:
- Use Data Scrapping → Store it as DtVal
- Use Assign activity
LHS → DT1
RHS → Dtval.Rows(DtVal.Rows.Count-1)
Regards
Gokul
1 Like
Web extraction is coming in format of string
No, its coming in string
can you show string.
Could you share us with the sample string @MitheshBolla
You can try with
Generate table activity → To convert string to DataTable and try with the above expression