Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hello,
In my dataset, I have only the date where contracts change state from active to inactive or inacitve to active.
The day with no change, there a no row for the contract.
My problem is that I must count the number of active contract every day, like in the image below.
How can I do that in DAX ?
Thanks
Hi, @TanguyM ;
You could create a new table and a measure as follow:
Newtable = CALENDAR(MIN('Table'[date]),MAX('Table'[date]))
Measure =
CALCULATE(SUM('Table'[active]),FILTER('Table',[date]<=MAX('Newtable'[Date])))
-CALCULATE(COUNT('Table'[contract]),FILTER('Table',[date]<=MAX('Newtable'[Date])&&[active]=0))
The final output is shown below:
Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@TanguyM , Create a new column like
End Date = minx(filter(Table, [Contract] =earlier([Contract]) && [Date] > earlier([Date])),[Date]) -1
and then use one of the follwing approch to get adat for all dates
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
9 | |
9 | |
7 | |
6 | |
5 |
User | Count |
---|---|
20 | |
11 | |
10 | |
9 | |
6 |