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

null
    • Ninox partner
    • RoSoft_Steven.1
    • 3 yrs ago
    • Reported - view

    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

    • Agus
    • 3 yrs ago
    • Reported - view

    it worked! Thank you! :D

Content aside

  • 3 yrs agoLast active
  • 2Replies
  • 496Views