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
bga1
Frequent Visitor

Clustered Column chart with two value fields

Hi!

I have a table [orders]. There are two date columns, one is "order_received_date" and the other is "order_despatched_date"

 

I want to have a Clustered column chart with x-Axis [Date] and y-Axis [Amount of orders].

There should be 2 bars aligned to each other (2 Values). One bar with amount of orders received and one bar with amount of orders despatched. 

 

It seemed like a simple task, but I just don't know how to do it. Do I need a separate date table or something?

 

Thx for your help!

 

1 ACCEPTED SOLUTION
RMB
Resolver II
Resolver II

This is easily done with the USERELATIONSHIP function.

 

First, on the relationship modeling tab create a link for both date columns, you'll notice the second one is inactive but we can use the above function to have the measure use that relationship instead.

 

sample.png

 

Now create a measure that uses calculate to use that inactive relationship.

sample2.png

 

Measures:

 

Despatched Count = CALCULATE(COUNT(Orders[Order_No]),USERELATIONSHIP(CalendarTable[Date],Orders[order_despatched_date]))

Received Count = COUNT(Orders[Order_No])

 

 
Orders Table:
sample3.png
 
Visual fields:
sample4.png

 

View solution in original post

1 REPLY 1
RMB
Resolver II
Resolver II

This is easily done with the USERELATIONSHIP function.

 

First, on the relationship modeling tab create a link for both date columns, you'll notice the second one is inactive but we can use the above function to have the measure use that relationship instead.

 

sample.png

 

Now create a measure that uses calculate to use that inactive relationship.

sample2.png

 

Measures:

 

Despatched Count = CALCULATE(COUNT(Orders[Order_No]),USERELATIONSHIP(CalendarTable[Date],Orders[order_despatched_date]))

Received Count = COUNT(Orders[Order_No])

 

 
Orders Table:
sample3.png
 
Visual fields:
sample4.png

 

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.