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.
Hi team,
I have a date table, and a data table, the three relevant columns from the data table are:
ID | Date Issued | Compliance Date |
1 | 1/01/2020 | 10/01/2020 |
2 | 5/01/2020 | 14/01/2020 |
3 | 13/01/2020 | 20/01/2020 |
4 | 16/01/2020 | 22/01/2020 |
I need 3 measures, 2 I've done, stuck on the third. My date table has an active relationship between Date and Date Issued, and an inactive relationship between Date and Compliance Date.
For the first measure, items raised on a given day, it's just a distinctcount of the id
For the second measure, items closed on a given day, it's
Solved! Go to Solution.
@Hickling , You can try a measure like one used in HR Analytics
CALCULATE(COUNTx(FILTER(Employee,Employee[Start Date]<=max('Date'[Date]) && (ISBLANK(Employee[End Date]) || Employee[End Date]>max('Date'[Date]))),(Employee[Employee Id ])),CROSSFILTER(Employee[Start Date],'Date'[Date],None))
You can refer this blog
@Hickling , You can try a measure like one used in HR Analytics
CALCULATE(COUNTx(FILTER(Employee,Employee[Start Date]<=max('Date'[Date]) && (ISBLANK(Employee[End Date]) || Employee[End Date]>max('Date'[Date]))),(Employee[Employee Id ])),CROSSFILTER(Employee[Start Date],'Date'[Date],None))
You can refer this blog
This is perfect, thank you!
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 | |
64 | |
51 | |
39 | |
26 |
User | Count |
---|---|
86 | |
55 | |
44 | |
42 | |
36 |