Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
I would like to know how to calculate the number of current contracts of a customer with a visual table. I have made a copy of the table on the image below. This table is a filtered table. But with this copy, the dax formula does just fine. Only I don't know how to get this table in the formula.The calculation to count the contracts I have:
Number of current contracts per month =
VAR MinDatum2 = MAX(Dimdate_end[Date])
VAR MinDatum3 =MIN(Dimdate_end[Date])
RETURN
CALCULATE(
COUNTROWS('Tabel (2)'),
Dimdate_end[Date] >= MinDatum3 ,
Dimdate[Date] <= MinDatum2
)
I would like to use the table on the picture for my calculation. I probably have to build a visual table for this because the table on the picture is filtered. This table normally consists of 400 records. Because I use an earlier function to calculate the sum of hours of a current contract in the data. An index is placed on it and at the lowest in index is the sum of the number of hours of the contract. I use that to determine the contract.
To determine this I use the following dax formula:
Contract >4 hours = If(Data[Index traject] = 1 &&
Data[Traject contract hours] >= 4,1,0)
But how can I Calculate stock Number of current contracts per month with a visual table?
Solved! Go to Solution.
Hi @Anonymous
Thanks for reaching out to us.
>>But how can I Calculate stock Number of current contracts per month
please try this measure,
measure =
CALCULATE (
COUNTROWS ( Data ),
FILTER (
Data,
[Contract >4 hours] = 1
&& YEAR ( Data[date] ) = YEAR ( MIN ( Dimdate[Date] ) )
&& MONTH ( Data[date] ) = MONTH ( MIN ( Dimdate[Date] ) )
)
)
Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous
Thanks for reaching out to us.
>>But how can I Calculate stock Number of current contracts per month
please try this measure,
measure =
CALCULATE (
COUNTROWS ( Data ),
FILTER (
Data,
[Contract >4 hours] = 1
&& YEAR ( Data[date] ) = YEAR ( MIN ( Dimdate[Date] ) )
&& MONTH ( Data[date] ) = MONTH ( MIN ( Dimdate[Date] ) )
)
)
Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
Hi there.
To me, it's not really clear what it is you want. Can you please simplify your question? Thanks. And please always remember that a picture is worth a thousand words 🙂
@Anonymous , refer if one the approach can help
Between Dates - Dates between
Tables way
https://amitchandak.medium.com/dax-get-all-dates-between-the-start-and-end-date-8f3dac4ff90b
https://amitchandak.medium.com/power-query-get-all-dates-between-the-start-and-end-date-9ad6a84cf5f2
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
18 | |
15 | |
14 | |
11 | |
8 |
User | Count |
---|---|
24 | |
19 | |
12 | |
11 | |
10 |