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.
In my Fact table I have 2 columns (overdue and completed) and those are connected to dimension table "Status" column is related to Overdue and completed columns.
However I can make it only one active.
for a "Completed" chart I want a connection with "Completed and Status"
for a "Overdue" chart I want a connection with "Overdue and Status"
what is the best way make 2 columns active dynamically?
Fact Table
========
Overdue
Completed
dimension table
===========
Order --- for sorting
Status --- <1 week completed, <2 weeks completed, 1 week overdue, 2weeks overdue
Type --- completed/overdue
I want to show as shown in the pictures.
Thanks,
Surya.
Solved! Go to Solution.
Thank you so much for your time. somehow it did not work for me. I created a one more dim table since I dont have much time on this.
Thanks,
Surya.
2 options:
Option 1: use USERELATIONSHIP on the measure that is being referenced by the graph. Filter the graph to either completed or overdue
example:
TotalOverDueBooks = Calculate(COUNTDISTINCT(BookID), USERELATIONSHIP('FactTable'[ Overdue],'DimTable'[Status] )
TotalCompletedBooks = Calculate(COUNTDISTINCT(BookID), USERELATIONSHIP('FactTable'[ Completed],'DimTable'[Status] )
Click on graph: Add DimTable[Type] to the "Filters on this visual". Set the filter to Type = complete or overdue appropriate to the graph in question
Opion 2: Split the dimension into two dimensions DimComplete, DimOverdue. You are treating them separately anyway.
If I answered your question, please mark my post as solution, Appreciate your Kudos
Thank you so much for your time. somehow it did not work for me. I created a one more dim table since I dont have much time on this.
Thanks,
Surya.
try treatas
Did I answer your question? If so, please mark my post as a solution!
Proud to be a Super User!
use userrelationship function in dax with the columns refrence which are used in inactive relationship this will do the job
Did I answer your question? If so, please mark my post as a solution!
Proud to be a Super User!
It already have active connection with "week Completed" column. so trying to make it active with "Overdue" col.
I already tried this but no luck.
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
70 | |
68 | |
43 | |
34 | |
26 |
User | Count |
---|---|
86 | |
50 | |
45 | |
38 | |
38 |