Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
good morning
I have two filters. One filters by business unit, and another by job. When I filter by business, it removes all the job types that are not in that business from the second filter. I do not want it to do this. How do I stop this?
I have tried adding a calculated column that takes the max of the business unit name, thinking that a calculated column might help.
I have also tried duplicating the table, and joining on the job name, but job names aren't unique in the table so that also doesn't work.
Any ideas?
Solved! Go to Solution.
Hello @jacques_412,
Can you please try creating a new measure or calculated column in your report using the USERELATIONSHIP function:
MeasureName =
CALCULATE(
[YourMeasure],
USERELATIONSHIP(JobTable[Job], BusinessUnitTable[Job]),
ALLSELECTED()
)
➤ Email: sahir@sahirmaharaj.com
➤ Lets connect on LinkedIn: Join my network of 12K+ professionals
➤ Want me to build your Power BI solution? Lets chat about how I can assist!
➤ Join my Medium community of 30k readers! Sharing my knowledge about data science and artificial intelligence
Hello @jacques_412,
Can you please try creating a new measure or calculated column in your report using the USERELATIONSHIP function:
MeasureName =
CALCULATE(
[YourMeasure],
USERELATIONSHIP(JobTable[Job], BusinessUnitTable[Job]),
ALLSELECTED()
)
➤ Email: sahir@sahirmaharaj.com
➤ Lets connect on LinkedIn: Join my network of 12K+ professionals
➤ Want me to build your Power BI solution? Lets chat about how I can assist!
➤ Join my Medium community of 30k readers! Sharing my knowledge about data science and artificial intelligence
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.