Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

Calculate stock Number of current contracts per month with a visual table.

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

    )

2.png

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?

1 ACCEPTED SOLUTION
v-xiaotang
Community Support
Community Support

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.

View solution in original post

3 REPLIES 3
v-xiaotang
Community Support
Community Support

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.

daXtreme
Solution Sage
Solution Sage

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 🙂

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.