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 all,
I have a measure that works except when I add a date component to my visual. It appears to be evaluating for each period instead of utilising the extenal filter that was applied to the visual. There should be a third column for 2023/24 02 which designates a failure in that period for asset 34332 but as it was only one failure in that period it has been omitted - the evaluating date parameter should be less <= 84 days.
Sample data:
ASSET_NUM | ASSET_DESC | TICKET_ID | RAISED_DATE | RAISED_YEAR_PERIOD |
34332 | West | 2985693 | 03/04/2023 | 23/24-P01 |
34332 | West | 2986260 | 18/04/2023 | 23/24-P01 |
34332 | West | 2986718 | 24/04/2023 | 23/24-P01 |
34332 | West | 2986745 | 27/04/2023 | 23/24-P01 |
34332 | West | 2986752 | 30/04/2023 | 23/24-P02 |
34332 | West | 2987520 | 31/05/2023 | 23/24-P03 |
34332 | West | 2987772 | 12/06/2023 | 23/24-P03 |
34332 | West | 2987747 | 12/06/2023 | 23/24-P03 |
34332 | West | 2988094 | 21/06/2023 | 23/24-P03 |
I am trying to build in a date component into the measure to see if it fixes the issue.
My original measure:
Repeat Failures = COUNTROWS(
FILTER(
SUMMARIZE(
'CS_RPT_Failures','CS_RPT_Failures'[ASSETNUM],
"TICKETID",
COUNT('CS_RPT_Failures'[TICKETID])
),
[TICKETID]>= 3 && ISBLANK([TICKETID]) = FALSE)
User | Count |
---|---|
22 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
12 | |
11 | |
7 | |
6 |