Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
I have items created and closed each month. This was working for years and then we appended data from a new source. Since appending the query, this measure is no longer working. My current relationship from the appended source to my date table is as follows. The relationship uses the creation date. My measure uses the USERELATIONSHIP function to get the number of closed items.
It's properly calculating the created per month. However, my measure is not correctly picking up items closed from the new data source.
Here's my measure to get the closed items per month.
Count Closed Actions :=
CALCULATE(COUNTROWS('EQMS Appended'),
'EQMS Appended'[Date Closed],
USERELATIONSHIP('EQMS Appended'[Date Closed],'Date Table'[Date])
)
Solved! Go to Solution.
Just to discard possible issues, is the date closed field in the appended table formatted as date type (it must be the same type as the date field in the Date Table)?
Proud to be a Super User!
Paul on Linkedin.
Thank you Paul. Sadly, my issue remains.
Just to discard possible issues, is the date closed field in the appended table formatted as date type (it must be the same type as the date field in the Date Table)?
Proud to be a Super User!
Paul on Linkedin.
Thank you Paul! My appended query was using DateTime! Once I updated it to date, it was working properly! Thank you so much!
Try:
Count closed actions =
CALCULATE(COUNTROWS (EQMS Appended), USERELATIONSHIP(EQMS Appended [Date Closed], Date Table [Date]))
Proud to be a Super User!
Paul on Linkedin.
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 23 | |
| 23 | |
| 21 | |
| 17 | |
| 14 |
| User | Count |
|---|---|
| 58 | |
| 50 | |
| 37 | |
| 29 | |
| 24 |