Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi All,
There's probably an easy way to do this, but I'm missing the trick.
We have repair order data records for ALL customers based on order submit date, which is related to the date table.
We have specific customers (a subset of customers) we're targeting and tracking results for a specific period of time. I have the targeted customers loaded as a separate table in the model.
This time period is referred to as the "adoption" period so it has a start and an end date.
I am calculating a count of repairs as a column on the target customer table for the adoption period like this:
Solved! Go to Solution.
Hi @Shelley ,
Please have a try.
Filtered Repair Orders =
CALCULATE(
COUNTROWS('Repair Order'),
FILTER(
'Repair Order',
'Repair Order'[Submit Date] >= MIN('Fishing'[Adoption Period Start Date]) &&
'Repair Order'[Submit Date] <= MAX('Fishing'[Adoption Period Tollgate])
)
)
How to Get Your Question Answered Quickly - Microsoft Fabric Community
If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .
Best Regards
Community Support Team _ Rongtie
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Shelley ,
Please have a try.
Filtered Repair Orders =
CALCULATE(
COUNTROWS('Repair Order'),
FILTER(
'Repair Order',
'Repair Order'[Submit Date] >= MIN('Fishing'[Adoption Period Start Date]) &&
'Repair Order'[Submit Date] <= MAX('Fishing'[Adoption Period Tollgate])
)
)
How to Get Your Question Answered Quickly - Microsoft Fabric Community
If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .
Best Regards
Community Support Team _ Rongtie
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.