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

Summarized/Grouped tables that react to slicers

Sorry if this is a report but I have searched endlessly for a clear answer.

 

I have to report on an open rate by month.

 

I expect to see an open rate report by month which reacts to demographic slicers.

 

My dataset is a large datadump that has events (Opens and Deliveries within the same line)which are timestamped.  I've created the Summarized table that returns to me the open rate by month, and linked them by their PK, no problem.

 

The issue when we want to see the open rates within a certain demographic the values don't change.  They're not recalculating. So if prior to selecting a slicer the open rate is 40% and 60% between May and June, those values remain no matter what is selected, even after the table relationships are correctly applied.

 

I did some hunting for calculated tables but have not seen an example where this works.

 

Any help would be greatly appreciated.

 

-Chris

4 REPLIES 4
v-piga-msft
Resident Rockstar
Resident Rockstar

Hi @Chrisdonovan11 ,

More details will be much helpful.

If it is convenient, could you share some data sample or screenshots to describe your scenario better so that we could help further on it?

Please refer to this blog how to get your question answered quickly.

Best Regards,

Cherry

 

Community Support Team _ Cherry Gao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Sure, I didn't see a place to attach a pbx but hopefully this works.

 

Below is the data set.

ContactIDContactStateCustomerTypeProgramNameEnteredEngagedPurchased
1MIPreferred1st Program5/1/20195/2/2019 
2MIEdge2nd Program5/2/20195/3/20195/4/2019
3MAOther1st Program5/3/20195/4/2019 
4MAPreferred2nd Program5/4/20195/5/20195/6/2019
5CAEdge1st Program5/5/20195/6/2019 
6CAOther2nd Program5/6/2019  
7NYPreferred1st Program5/7/20195/8/20195/9/2019
8NYEdge2nd Program5/8/2019  
9NYOther1st Program5/9/2019######## 
10NYPreferred2nd Program5/10/2019########5/12/2019

 

When I create visuals I hope to highlight the number of contacts per program and the open rate per program (a table with the screenshot below)

 

New Table.PNG

 

 

 

 

 

What I get is a table that won't change line values (from the new table above) when applying slicers.

Slicer2.PNG

 

 

Slicer.PNG

Seems like this isn't possible.

Hi  @Chrisdonovan11 ,

By my tests, I'm afraid that we cannot achieve your desired output based on your summarize table.

Why not create the measure directly?

You could create the measure like below.

Measure 3 =
VAR a =
    CALCULATE (
        COUNTX ( 'Table2', 'Table2'[Engaged] ),
        FILTER ( 'Table2', 'Table2'[ProgramName] = MAX ( 'Table2'[ProgramName] ) )
    )
VAR b =
    CALCULATE (
        COUNTX ( 'Table2', 'Table2'[Entered] ),
        FILTER ( 'Table2', 'Table2'[ProgramName] = MAX ( 'Table2'[ProgramName] ) )
    )
RETURN
    DIVIDE ( a, b )

Best Regards,

Cherry

 

Community Support Team _ Cherry Gao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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.