0
All data has duplicates
how do I remove the duplicates?
5 replies
-
how do I remove the duplicates?
-
how do I remove the duplicates?
-
Add a Button in your table with formula:
---
for ii in unique((select 'Your Table').'Your Field') do
let myRec := first((select 'Your Table')['Your Field' = ii].Nr);
delete (select 'Your Table')['Your Field' = ii and Nr != myRec]
end---
Leo
-
Oh, this is a formula for the german system. in your case:
---
for ii in unique((select 'Your Table').'Your Field') do
let myRec := first((select 'Your Table')['Your Field' = ii]._id);
delete (select 'Your Table')['Your Field' = ii and _id != myRec]
end---
Leo
-
Nice. Thanks. I was looking for a function that does what unique() does.
Content aside
- 6 yrs agoLast active
- 5Replies
- 2607Views