Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Hi!
How to filter column 2 from column 1? the result should be in column 3.
In each row, the length of arrays is different.
For your question, I modified your dax.
"reviews_reviews"
Create a measure.
Measure =
CALCULATE(
MAX('reviews_reviews'[Next_Action]),
FILTER(
RELATEDTABLE('reviews_reviews'),
'reviews_reviews'[Assigned] <> ""
)
)
Here is the result.
If you're still having problems, provide some dummy data and the desired outcome. It is best presented in the form of a table.
Regards,
Nono Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi. Good try.
Your solution work when you need exclude column with one variable.
In my case it's array column = multiple variable in one cell
it is not works
I tried this
DistinctValuesArrayColumn1 =
DISTINCT(FILTER(RELATEDTABLE(reviews_reviews),
NOT(ISBLANK(reviews_reviews[Assigned]))),
reviews_reviews[Next_Action])
the issue is:
Too many arguments were passed to the DISTINCT function. The maximum argument count for the function is 1.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 9 | |
| 6 | |
| 3 | |
| 2 | |
| 1 |
| User | Count |
|---|---|
| 21 | |
| 14 | |
| 9 | |
| 5 | |
| 5 |