hi,
I read a lot about ways to overcome the 500 limit, but I suppose I'm doing something wrong.
I have a table called TaulaProd with about 6000 lines and 3 columns: SKU / Name / PartName like:
SKU / Name / PartName
--------------------------------------
SKU1 Prod1 Part1
SKU1 Prod1 Part2
SKU1 Prod1 Part3
SKU2 Prod2 Part1
...
I create a dropdown that lists all the parts in SKU1, so showing: Part1, Part2 and Part3...
Everything works great for the SKUs on the 1st 500 lines... but not after this 500 records for example SKU900 that is way under the 1st 500 rows.
I tried defining the dropdown Items= Filter(TaulaProd, SKU="SKU900") and it is not working
I thought Filter is delegable and should not be a problem...
then I tried collecting:
ClearCollect(Peces,Filter(TaulaProd,SKU= "SKU900"))
but the collection is empty, while works perfectly if I do ClearCollect(Peces,Filter(TaulaProd,SKU= "SKU9")) because in on the 500 first rows.
What I'm doing wrong?
thanks