Forum Discussion
Error when using Distinct Function: A table of multiple values was supplied where a single value was
- 2 years ago
hi, clint_powell
use all() function it give unique value of columnlike below
all(tablename[columnname])
- 2 years ago
Hi, clint_powell
Syntax error for all() function
See my code properly
You miss ) to finish all() function
filter(
all(tablename[columnname]),
tablename[columnname]<>blank()
)
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.and don't forgot to give kudos.
Thanks so much for the quick responses! But, I'm still getting an error, see below:
Hi, clint_powell
Syntax error for all() function
See my code properly
You miss ) to finish all() function
filter(
all(tablename[columnname]),
tablename[columnname]<>blank()
)
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.and don't forgot to give kudos.
- clint_powell2 years agoFrequent Visitor
That was it, thanks so much!