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!View all the Fabric Data Days sessions on demand. View schedule
Hi,
I'm new to PowerBi. I have got the total count of customers and now trying to create a date Parameter to show active customers asat date. In SQL and Tableau I'm able to achieve this using the below where [Date] is my Parameter
[Start Date] <= [Date] AND IFNULL([End Date],[Date]) >= [Date]
How can I achive the same in PowerBI?
Thanks
Jag
Solved! Go to Solution.
You may refer to the following measure.
Measure =
VAR d =
SELECTEDVALUE ( 'Calendar'[Date] )
RETURN
COUNTROWS (
FILTER (
Table1,
Table1[Start Date] <= d
&& (
ISBLANK ( Table1[End Date] )
|| Table1[End Date] > d
)
)
)
You may refer to the following measure.
Measure =
VAR d =
SELECTEDVALUE ( 'Calendar'[Date] )
RETURN
COUNTROWS (
FILTER (
Table1,
Table1[Start Date] <= d
&& (
ISBLANK ( Table1[End Date] )
|| Table1[End Date] > d
)
)
)
Without sample data, something like this should work:
MyCount = CALCULATE(COUNTROWS(table),FILTER(table,[Start Date]<=[Date] && [End Date] >= [Date]))
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!