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.
Hi guys,
I need your help with one of my visuals 🙂
I have this chart that has a dot for each item. Some of these items may be 'blocked' so I want to add a way to highlight those (in red):
There is a similar (but the same) table in my dataset that has a column for this:
However I don't have this column in my table being used for the visual (for performance purposes):
Is there anyway I can get the blocked items highlighted in the table being used for the visual?
I have added the file here for those who could help 🙂
Sorry no still not got the answer 😞
Hi @FlowViz,
Did the above suggestions help with your scenario? if that is the case, you can consider Kudo or accept the helpful suggestions to help others who faced similar requirements.
If these also don't help, please share more detailed information to help us clarify your scenario to test.
How to Get Your Question Answered Quickly
Regards,
Xiaoxin Sheng
Thanks - what should 'value' be in (Table2[value]) ?
Hi @FlowViz,
According to your description, I think you can remove the legend fields and set data color with conditional formatting to achieve your requirement.
Expression-based formatting - Release Notes | Microsoft Docs
Regads,
Xiaoxin Sheng
@FlowViz , Try a measure like
measure =
var _tab = summarize(filter(Table1, Table1[blocked2] ="Y"),[workitemdid2])
return
calculate(count(Table2[value]), filter(Table2, Table2[workitemdid] in_tab))
or try to use