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

Building grouped column graph to compare same data-column

Hi PowerBI experts!

I am attempting to build a grouped column graph, to compare the same data-column, but with different filters.

 

My data looks like this:

 

CompanySales areaResult of callDate
Company 1Area 1No answer28-08-2018
Company 2Area 1Book meeting28-08-2018
Company 2Area 2No interest26-05-2018
Company 3Area 3Book meeting25-04-2018

 

I need to compare:

AMOUNT calls FILTER "Book meeting" GROUPED BY Date

to
AMOUNT calls GROUPED BY Date

 

I know how to create the visualisation and how to filter the data, but i don't know how to filter one data series without the other?

1 ACCEPTED SOLUTION
v-jiascu-msft
Employee
Employee

Hi @Anonymous,

 

Please check the demo in the attachment. Create two measures like below.

AllCalls = COUNT(Table1[Result of call])
BookMeeting =
CALCULATE (
    COUNT ( Table1[Result of call] ),
    Table1[Result of call] = "Book meeting"
)

Building_grouped_column_graph_to_compare_same_data_column

 

 

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

2 REPLIES 2
v-jiascu-msft
Employee
Employee

Hi @Anonymous,

 

Please check the demo in the attachment. Create two measures like below.

AllCalls = COUNT(Table1[Result of call])
BookMeeting =
CALCULATE (
    COUNT ( Table1[Result of call] ),
    Table1[Result of call] = "Book meeting"
)

Building_grouped_column_graph_to_compare_same_data_column

 

 

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

AH thanks alot! to be honest i didn't attempt this because i was convinced it would not be able to group the measure by date for some reason.. 🙂 Every day is a school day!

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.