The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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]))