Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
Anonymous
Not applicable

Average Business Day KPI Help

So I am following everything i find in the forum and still can't get the right results. I'm trying to calculate the average number of Busines days between application and in process dates. 

 

I have a calendar table with a column that has 1 for weekdays and 0 for weekends. 

 

I'm using both the of the following forums in two seperate measures. 

 

App-Process = CALCULATE(SUM('Biz Days'[IsBusinessDayInt]),DATESBETWEEN(Days[Date],(MIN(Processing[Application Date])),(MIN(Processing[Log MS DateTime Processing]))))

 

App to Process = CALCULATE(
SUM('Biz Days'[IsBusinessDayInt]),
FILTER(
Days,
Days[Date]>MIN(Processing[Application Date])
&& Days[Date]<= MIN(Processing[Log MS DateTime Processing])))

 

 

I can get the number of business days but if i try to filter them the total is thrown off. Also the KPI they are looking for is Average and i can't figure out how to get that. 

 

Any help would be great!

Capture.PNG

 

 

 

1 REPLY 1
v-yuta-msft
Community Support
Community Support

Hi KGooseman,

 

As a general solution, you may modify your measure as pattern below:

 

App to Process =
CALCULATE (
    AVERAGE ( 'Biz Days'[IsBusinessDayInt] ),
    FILTER (
        Days,
        Days[Date] > MIN ( Processing[Application Date] )
            && Days[Date] <= MIN ( Processing[Log MS DateTime Processing] )
    ),
    ALLSELECTED ( Days )
)

Regards,

Jimmy Tao

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.