Hey guys, can you help me out with this one
ClearCollect(collectHoofdprojecten; {Result: "Alle projecten"});;
Collect(collectHoofdprojecten;Distinct('Voorraden Logistiek'; Hoofdproject.Value));;
ClearCollect(collectDatumTelling; {Result: "-"});;
Collect(collectDatumTelling;Distinct('Voorraden Logistiek';('Datumtelling'))
Can you tell me why the first Collection works and the second one doesn't ?
Im guessing it has something to do with de last part of the formula because I want a collection based on a Date column (='Datumtelling') Basically it goes wrong in the last part from the part that i use Distinct.
Ive already tried some variations such as...
ClearCollect(collectDatumTelling; {Result: "-"});;
Collect(collectDatumTelling;Distinct('Voorraden Logistiek';(DateValue('Datum telling')))
But that doesn't work, can someone help me out here ?