Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
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
use userrelationship function in dax with the columns refrence which are used in inactive relationship this will do the job
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.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 44 | |
| 43 | |
| 38 | |
| 18 | |
| 16 |
| User | Count |
|---|---|
| 67 | |
| 63 | |
| 30 | |
| 30 | |
| 23 |