Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
I have 2 dates in one dataset: 'StartDate' and 'EndDate'
All records will have StartDate, but not all records will have EndDate.
In this case, how can I show them with 'Clustered column chart', unable to link those 2 dates into 1 date.
I will need a 'date' for Axis, and the value will be 1) count of StartDate 2) count of EndDate.
@Anonymous
Hi,
Could you please tell me if your problem is solved? You can mark the right answer to help others if it's convenient for you.
Best Regards!
Dale
You will use the USERELATIONSHIP function to "activate" the inactive relationship
SomeMeasure = COUNTROWS(MyTable)
Total Start Count := CALCULATE( [SomeMeasure] )
Total End Count := CALCULATE( [SomeMeasure], USERELATIONSHIP(MyTable[EndDate], Calendar[Date]))
| User | Count |
|---|---|
| 51 | |
| 38 | |
| 33 | |
| 22 | |
| 19 |
| User | Count |
|---|---|
| 136 | |
| 102 | |
| 58 | |
| 36 | |
| 35 |