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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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