Hello,
I have a very basic filter:
Randomizer ≤ 3
The view only contains the record where the Randomizer = 1 even though there are records that contain 1 and 3.
Thanks!
Hello,
I have a very basic filter:
Randomizer ≤ 3
The view only contains the record where the Randomizer = 1 even though there are records that contain 1 and 3.
Thanks!
It’s possible that the number in those fields is greater than 3. I would change the formatting of your number field from “integer” to “decimal”, and choose to display many decimal points. Then see if you’re actually looking at 3.00000 or if you’re looking at something greater than that.
Alternatively, you could just make your filter
Where
:: Randomizer
:: <
:: 4
and it will catch any 3.00000012
outliers.
Alternatively, you could just make your filter
Where
:: Randomizer
:: <
:: 4
and it will catch any 3.00000012
outliers.
Ha! An even smarter solution!
Alternatively, you could just make your filter
Where
:: Randomizer
:: <
:: 4
and it will catch any 3.00000012
outliers.
Thanks Jeremy,
I just thought if I was using an integer and doing Random function it would only contain integers. But either way, the Random doesn’t work. It creates duplicates.
I appreciate your help.
Thanks Jeremy,
I just thought if I was using an integer and doing Random function it would only contain integers. But either way, the Random doesn’t work. It creates duplicates.
I appreciate your help.
Random doesn’t mean non-duplicates. If you want to remove duplicates, you can use the DeDupe App.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.