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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello!
Need help with a measure to count the number of rows that falls between the selected dates on a slicer. My table has a column with start date and another with end date:
and they have a relationship with a calendar table (where I get the slicer from):
this is what I've got so far:
Measure =
VAR _inicio_data = FIRSTDATE(calendario[Date])
VAR _fim_data = LASTDATE(calendario[Date])
VAR _calc=
CALCULATE(COUNTROWS(pipedrive), FILTER(pipedrive, pipedrive[data_fim_calculos] >= _inicio_data && pipedrive[data_fim_calculos] <= _fim_data))
RETURN
IF(ISBLANK(_calc), 0, _calc)
but since I'm using only the active relationship ïm not getting the result I need.
Hope somebody can help me out!
Thanks.
Solved! Go to Solution.
Hi @comerlatto_tcr ,
Below is my test table and data model:
Table:
Date:
Measure =
VAR min_date =
MIN ( 'Date'[Date] )
VAR max_date =
MAX ( 'Date'[Date] )
VAR tmp =
FILTER ( 'Table', [Start Date] >= min_date && [End Date] <= max_date )
RETURN
COUNTROWS ( tmp )
Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @comerlatto_tcr ,
Below is my test table and data model:
Table:
Date:
Measure =
VAR min_date =
MIN ( 'Date'[Date] )
VAR max_date =
MAX ( 'Date'[Date] )
VAR tmp =
FILTER ( 'Table', [Start Date] >= min_date && [End Date] <= max_date )
RETURN
COUNTROWS ( tmp )
Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!