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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
milomilo2020
Frequent Visitor

DAX - Count in a Line Chart based on Start and Finish Date

Hello,

I have this table :

milomilo2020_1-1656596756604.png

 

I have it linked to a Calendar table through the "Created" date.

I need to Show the COUNT of ID between "Created + 30" and "Resolved"

So for example, for ID 44564, the Line chart will count 1 starting from 10/2/2022 to 15/3/2022

And for ID 44555,  the Line chart will count 1 starting from 19/3/2022 to 15/5/2022

 

How can I achieve this in a measure, taking into account that the relationship between that table and the calendar table is "Created" ?

 

Thanks

1 ACCEPTED SOLUTION
v-xiaotang
Community Support
Community Support

Hi @milomilo2020 

Thanks for reaching out to us.

>> for ID 44564, the Line chart will count 1 starting from 10/2/2022 to 15/3/2022. And for ID 44555,  the Line chart will count 1 starting from 19/3/2022 to 15/5/2022

You can try this way

vxiaotang_0-1657015007578.png

Since there is no relationship between the 'calendar' and the ID in the 'Table', it needs us to manually create a measure for each id

count1 = CALCULATE(COUNT('Table'[ID]),FILTER('Table','Table'[ID]=44564 && 'Table'[Created+30]<=MIN('calendar'[Date]) && 'Table'[Resolved]>=MIN('calendar'[Date])))
count2 = CALCULATE(COUNT('Table'[ID]),FILTER('Table','Table'[ID]=44555 && 'Table'[Created+30]<=MIN('calendar'[Date]) && 'Table'[Resolved]>=MIN('calendar'[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

2 REPLIES 2
v-xiaotang
Community Support
Community Support

Hi @milomilo2020 

Thanks for reaching out to us.

>> for ID 44564, the Line chart will count 1 starting from 10/2/2022 to 15/3/2022. And for ID 44555,  the Line chart will count 1 starting from 19/3/2022 to 15/5/2022

You can try this way

vxiaotang_0-1657015007578.png

Since there is no relationship between the 'calendar' and the ID in the 'Table', it needs us to manually create a measure for each id

count1 = CALCULATE(COUNT('Table'[ID]),FILTER('Table','Table'[ID]=44564 && 'Table'[Created+30]<=MIN('calendar'[Date]) && 'Table'[Resolved]>=MIN('calendar'[Date])))
count2 = CALCULATE(COUNT('Table'[ID]),FILTER('Table','Table'[ID]=44555 && 'Table'[Created+30]<=MIN('calendar'[Date]) && 'Table'[Resolved]>=MIN('calendar'[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.

amitchandak
Super User
Super User

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

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