Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello,
We have a table of tags which joins back to various tables.
How would I rewrite the code below to apply ALL filter to OneData_Tags field TagType. And then apply TagType = "Business Owner". So, first need OneData_Tags table where we remove all filters on field TagType. And then we apply a filter on that field where TagType="Business Owner".
TagName_BusinessOwner_Grouped = CONCATENATEX(FILTER(OneData_Tags, OneData_Tags[TagType]="Business Owner"),OneData_Tags[TagName],", ")
Any help greatly appreciated,
Dan
Hi,
I am not sure if I understood your question correctly, but please check the below.
TagName_BusinessOwner_Grouped =
CONCATENATEX (
FILTER ( ALL ( OneData_Tags ), OneData_Tags[TagType] = "Business Owner" ),
OneData_Tags[TagName],
", "
)
@Jihwan_Kim thanks for your response! This is close to what we need - but not exactly correct. Apologies for not initially explaining this clearly. The required fix seems to be in the first function call - we don't want to remove filters for ALL fields - just remove the filter for field TagType. Tried several variants of this including creating a table variable but none worked. So, need to do this: (1) table OneData_Tags should return all fields with current filters applied EXCEPT for field TagType - remove all filters on that field - so no filters on field TagType. (2) Apply filter TagType = 'Business Owner' (3) Return concatenated string of all TagNames.
Appreciate your help with this! Dan
Tried this but didn't work. Error was: A table of multiple values was supplied where a single value was expected
TagName_BusinessOwner_Grouped =
var tempTable = FILTER(OneData_Tags, ALL(OneData_Tags[TagType]))
return CONCATENATEX(FILTER(tempTable, OneData_Tags[TagType]="Business Owner"),OneData_Tags[TagName],", ")
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!
| User | Count |
|---|---|
| 5 | |
| 5 | |
| 4 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 24 | |
| 21 | |
| 13 | |
| 12 | |
| 10 |