0
Unique() Does not work
hello,
I need a concat list of brand names to come out unique. Ive been working on this all day and no luck, its starting to get frustrating. Does anyone know how to solve this?
2 replies
-
For the unique function, you need an array. With concat you get a string.
Try :
let a := concat(Supplier.Suppliers.Supplier);
let b :=split (a,",");
unique(b)
There may be other methods also I think... (with 'select' you get an array)
Steven
-
it worked! Thank you! :D
Content aside
- 4 yrs agoLast active
- 2Replies
- 499Views