How to clear data table ?
Set variable (tablename) to empty/clear?
check this reference
clear data table activity is not available in Studio X
Okay, then try to do it with expression… @flashdrive07
Do you want to clear all the data with headers you can use the below expression then it make it new,
- Assign -> DT = New Data.DataTable()
Check the below image by using above expression,
If you want to clear the rows and keep the header use the below expression,
- Assign -> DT = DT.Clone()
Check the below image by using above expression,
Hope you understand!!