Jump to content
UBot Underground

Deleting Dupe Rows in a table


Recommended Posts

Having trouble deleting dupe rows in a table.

 

Example

 

1,2,3,4,5

1,2,3,4,e

a,b,c,d,e

1,2,3,4,5

f,g,h,i,b

 

 

 

I would like it to be

1,2,3,4,5

1,2,3,4,e

a,b,c,d,e

f,g,h,i,b

Link to post
Share on other sites

Thats my way.

 

clear table(&Old table)

clear table(&New table)

clear list(%Temp)

create table from file(".yourDataFile", &Old table)

save to file(".temp", &Old table)

clear table(&Old table)

add list to list(%Temp, $list from file(".temp"), "Delete", "Global")

save to file(".temp", %Temp)

clear list(%Temp)

create table from file(".temp", &New table)

 

Have luck

  • Like 1
Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...