Forum Discussion
rachaelwalker
Resolver III
6 years agoAggregating Quick Measures
I created a quick measure to show the sum of business workdays between two dates. In another visual, I want to show the average of workdays per project manager, however; it does not give me an option...
- Anonymous6 years ago
Hi rachaelwalker ,
Please try to update the existed calculated column "Warranty to Sent Invoice" as below to get the working days between two days:
Warranty to Sent Invoice = IF ( ISBLANK ( 'Projects'[WarrantyStart] ) || ISBLANK ( 'Projects'[Invoice Sent] ), 0, CALCULATE ( COUNTROWS ( 'Query2' ), FILTER ( 'Query2', WEEKDAY ( 'Query2'[Date], 2 ) < 6 ), DATESBETWEEN ( 'Query2'[Date], 'Projects'[WarrantyStart], Projects[Invoice Sent] ) ) )Best Regards
Rena
rachaelwalker
Resolver III
6 years agoFor security reasons, I will send it directly to you
Anonymous
6 years agoNot applicable
Hi rachaelwalker ,
Please try to update the existed calculated column "Warranty to Sent Invoice" as below to get the working days between two days:
Warranty to Sent Invoice =
IF (
ISBLANK ( 'Projects'[WarrantyStart] ) || ISBLANK ( 'Projects'[Invoice Sent] ),
0,
CALCULATE (
COUNTROWS ( 'Query2' ),
FILTER ( 'Query2', WEEKDAY ( 'Query2'[Date], 2 ) < 6 ),
DATESBETWEEN (
'Query2'[Date],
'Projects'[WarrantyStart],
Projects[Invoice Sent]
)
)
)
Best Regards
Rena