Hi all,
I need to merge these 2 graphs in 1.
Each of them have a different date column: submit date and last completed date. The measures are:
The outcome should be :
Thank you in advance for the help.
Solved! Go to Solution.
Hello @Emanuel ,
Based on your description, you need to show two different date field on one axis. For this, you can take help of a calendar table
https://www.vivran.in/post/power-bi-time-intelligence-calendar-table
and the connect it with your data table on both the dates:
Then modify your measures with USERELATIONSHIPS:
Count_of_lastCompleted =
CALCULATE(
COUNT(Report[Last Completed Date]),
USERELATIONSHIP(Report[Last Completed Date]), ftCalendar[Date])
)
Please follow the artilce for more details:
https://www.vivran.in/post/multiple-dates-on-the-same-axis-dax-userelationship
Cheers!
Vivek
Blog: vivran.in/my-blog
Connect on LinkedIn
Follow on Twitter
Hello @Emanuel ,
Based on your description, you need to show two different date field on one axis. For this, you can take help of a calendar table
https://www.vivran.in/post/power-bi-time-intelligence-calendar-table
and the connect it with your data table on both the dates:
Then modify your measures with USERELATIONSHIPS:
Count_of_lastCompleted =
CALCULATE(
COUNT(Report[Last Completed Date]),
USERELATIONSHIP(Report[Last Completed Date]), ftCalendar[Date])
)
Please follow the artilce for more details:
https://www.vivran.in/post/multiple-dates-on-the-same-axis-dax-userelationship
Cheers!
Vivek
Blog: vivran.in/my-blog
Connect on LinkedIn
Follow on Twitter
Join us for an in-depth look at the new Power BI features and capabilities at the free Microsoft Business Applications Launch Event.
User | Count |
---|---|
437 | |
154 | |
110 | |
50 | |
50 |
User | Count |
---|---|
458 | |
142 | |
131 | |
79 | |
71 |