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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Javid777
Regular Visitor

Count of active contracts for each month

1Hi everyone,

 

 

Can you please help me with this question? Annotation 2019-02-04 140929.jpgI have got list of contracts since 2015 November to 2019 January. There are 2 types of them, active and expired. I need to calculate count of active contracts per month for each year

1 ACCEPTED SOLUTION
v-yuta-msft
Community Support
Community Support

@Javid777,

 

Suppose the contracts count is based on the start_date. You can create calculate column using DAX like pattern below:

 

result =
CALCULATE (
    COUNT ( Table[comment] ),
    FILTER (
        Table,
        YEAR ( Table[start_date] ) = YEAR ( EARLIER ( Table[start_date] ) )
            && MONTH ( Table[start_date] ) = MONTH ( EARLIER ( Table[start_date] ) )
    )
)

Community Support Team _ Jimmy Tao

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-yuta-msft
Community Support
Community Support

@Javid777,

 

Suppose the contracts count is based on the start_date. You can create calculate column using DAX like pattern below:

 

result =
CALCULATE (
    COUNT ( Table[comment] ),
    FILTER (
        Table,
        YEAR ( Table[start_date] ) = YEAR ( EARLIER ( Table[start_date] ) )
            && MONTH ( Table[start_date] ) = MONTH ( EARLIER ( Table[start_date] ) )
    )
)

Community Support Team _ Jimmy Tao

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Fabric Monthly Update - May 2024

Check out the May 2024 Fabric update to learn about new features.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.