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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

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
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.