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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Line chart

I have date slicer called ordered date. I need to show 2 lines in line chart x axis is ordered date and y axis is units. One line would be delivered units by delivered date and another shipped units by estimated date.

 

 I am creating measure :

CALCULATE('Table'[Delivered Units], FILTER('table' , 'Delivery Date'[Delivery Date]))
CALCULATE('Table'[shipped Units], FILTER('table' , 'Ship Date'[Ship Date]))
 
But I get delivered units and shipped units by order date.Please help.
 
1 ACCEPTED SOLUTION

Hi @Anonymous,

 

You need an independent Date table. If you have one, please try it with this formula. 

 

Calendar =
CALENDARAUTO ()

Then the two measures could be like below. There should be two relationships, which one is active and the other is inactive.

 

 

Measure 1 =
CALCULATE (
    SUM ( 'Table'[Delivered Units] ),
    USERELATIONSHIP ( 'table'[Delivery Date], 'calendar'[date] )
)
Measure 2 =
CALCULATE (
    SUM ( 'Table'[shipped Units] ),
    USERELATIONSHIP ( 'table'[Ship Date], 'calendar'[date] )
)

 

Best Regards,
Dale

Community Support Team _ Dale
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

5 REPLIES 5
v-jiascu-msft
Employee
Employee

Hi @Anonymous,

 

Could you please mark the proper answers as solutions?

 

Best Regards,

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

I have date slicer called ordered date. I need to show 2 lines in line chart x axis is ordered date and y axis is units. One line would be delivered units by delivered date and another shipped units by estimated date.

 

 I am creating measure :

CALCULATE('Table'[Delivered Units], FILTER('table' , 'Delivery Date'[Delivery Date]))
CALCULATE('Table'[shipped Units], FILTER('table' , 'Ship Date'[Ship Date]))
 
But I get delivered units and shipped units by order date.Please help.
 
jthomson
Solution Sage
Solution Sage

You don't want to filter the table like that, you need to create relationships between a date table and your delivery and shipping date, and then utilise userelationship to utilise the relevant relationship as appropriate

Anonymous
Not applicable

I have connection between the 2 tables. How to use userrealationship ?

Hi @Anonymous,

 

You need an independent Date table. If you have one, please try it with this formula. 

 

Calendar =
CALENDARAUTO ()

Then the two measures could be like below. There should be two relationships, which one is active and the other is inactive.

 

 

Measure 1 =
CALCULATE (
    SUM ( 'Table'[Delivered Units] ),
    USERELATIONSHIP ( 'table'[Delivery Date], 'calendar'[date] )
)
Measure 2 =
CALCULATE (
    SUM ( 'Table'[shipped Units] ),
    USERELATIONSHIP ( 'table'[Ship Date], 'calendar'[date] )
)

 

Best Regards,
Dale

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

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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