Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
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.
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 2 | |
| 2 | |
| 2 | |
| 1 | |
| 1 |
| User | Count |
|---|---|
| 4 | |
| 3 | |
| 3 | |
| 3 | |
| 2 |