Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi everyone, I am trying to calculate a percentage here by using the CALCULATE function with multiple filters. Here is the dax code that I have written. This measure works as it should, but it takes time to load. I am wondering if there is another way of writing the DAX for better performance?
Thank you in advance!
Solved! Go to Solution.
@Michie_24
Try use IF instead of add multiple filters.
% of hires within 15 workdays =
VAR NoHiresWithin15WorkDays = IF([AcceptanceDt]<>BLANK()
&& [Candidate Confirmed Date]<>BLANK()
&& RPI2 - DateFlag by RequestID]=TRUE()
&& [Feedback Workdays by requestID]<=5,
countrows(filter(Request,Request[Hired within 15 Workdays]="Yes")))
var requestidcount =IF([AcceptanceDt]<>BLANK()
&& [Candidate Confirmed Date]<>BLANK()
&& [RPI2 - DateFlag by RequestID]=TRUE()
&& [Feedback Workdays by requestID]<=5,
COUNT(Request[RequestID])
RETURN
NoHiresWithin15WorkDays/requestidcount
Best regards
Paul Zheng _ Community Support Team
If this post helps, please Accept it as the solution to help the other members find it more quickly.
@Michie_24
Try use IF instead of add multiple filters.
% of hires within 15 workdays =
VAR NoHiresWithin15WorkDays = IF([AcceptanceDt]<>BLANK()
&& [Candidate Confirmed Date]<>BLANK()
&& RPI2 - DateFlag by RequestID]=TRUE()
&& [Feedback Workdays by requestID]<=5,
countrows(filter(Request,Request[Hired within 15 Workdays]="Yes")))
var requestidcount =IF([AcceptanceDt]<>BLANK()
&& [Candidate Confirmed Date]<>BLANK()
&& [RPI2 - DateFlag by RequestID]=TRUE()
&& [Feedback Workdays by requestID]<=5,
COUNT(Request[RequestID])
RETURN
NoHiresWithin15WorkDays/requestidcount
Best regards
Paul Zheng _ Community Support Team
If this post helps, please Accept it as the solution to help the other members find it more quickly.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 5 | |
| 5 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 16 | |
| 8 | |
| 7 | |
| 7 |