Forum Discussion
clint_powell
2 years agoFrequent Visitor
Error when using Distinct Function: A table of multiple values was supplied where a single value was
New user here trying to navigate unexpected results. I have a fact table that has multiple entries for repeating data points (email addresses). The same email address is listed multiple times within ...
- 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.
clint_powell
2 years agoFrequent Visitor
Thanks! Is there a way to pull in all the values, but ignore the nulls?
Dangar332
2 years agoResident Rockstar
hi, clint_powell
try below
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.