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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

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
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

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