Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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],", ")
User | Count |
---|---|
25 | |
12 | |
8 | |
6 | |
6 |
User | Count |
---|---|
26 | |
12 | |
12 | |
10 | |
6 |