Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Itemlist =
CONCATENATEX (
CALCULATETABLE (
VALUES ( Sheet1[Items] ),
ALLEXCEPT ( Sheet1, Sheet1[id])
),
[Items], ", "
)
Which works perfectly, however, I would now also like this function to cross-reference another column on the same sheet [exclusion] - and where the [item] is on the [exclusion] list, then it doesn't get added to the Item list.
Any suggestions greatly appreciated!
Solved! Go to Solution.
I've alterered the columns that this draws from now (by making a conditional column that does what I wanted the filter to do) so this works with my original code.
Thanks for your suggestion though!
@Anonymous , You can use
CONCATENATEX (
CALCULATETABLE (
VALUES ( Sheet1[Items] ),
ALLEXCEPT ( Sheet1, Sheet1[id]), filter (Sheet1, Sheet1[Col] ="Q")
),
[Items], ", "
)
or
calculate(
CONCATENATEX (
VALUES ( Sheet1[Items] ),
[Items], ", "
) , ALLEXCEPT ( Sheet1, Sheet1[id]), filter (Sheet1, Sheet1[Col] ="Q") )
I've alterered the columns that this draws from now (by making a conditional column that does what I wanted the filter to do) so this works with my original code.
Thanks for your suggestion though!
Thanks - that raises a circular dependancy issue, I'll look into it.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!