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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
JK-1
Helper I
Helper I

rows split, but merging response results within table -- happy it repeats

Is there a measure that would be able to perform the "overall" result in red, from the associated table data.

I would want it to be visual in the table, happy for the repeats, as having consolidated summary is useful when assessing.

 

thanks,

[Table]

CampaignNumberRespondedViewcampaign countcampaign&viewresponded type countview&responded type countoverall_show across all rows - merged result
10021Rep115/05/2025Agreed910021Agreed6Agreed 6Agreed 6, Disagreed 2, Incomplete 1
10021Rep218/05/2025Agreed910021Agreed6Agreed 6Agreed 6, Disagreed 2, Incomplete 1
10021Rep321/05/2025Agreed910021Agreed6Agreed 6Agreed 6, Disagreed 2, Incomplete 1
10021Rep421/05/2025Disagreed910021Disagreed2Disagreed 2Agreed 6, Disagreed 2, Incomplete 1
10021Rep526/05/2025Agreed910021Agreed6Agreed 6Agreed 6, Disagreed 2, Incomplete 1
10021Rep629/05/2025Agreed910021Agreed6Agreed 6Agreed 6, Disagreed 2, Incomplete 1
10021Rep730/05/2025Disagreed910021Disagreed2Disagreed 2Agreed 6, Disagreed 2, Incomplete 1
10021Rep830/05/2025Incomplete910021Incomplete1Incomplete 1Agreed 6, Disagreed 2, Incomplete 1
10021Rep930/05/2025Agreed910021Agreed6Agreed 6Agreed 6, Disagreed 2, Incomplete 1
12524Rep112/03/2025Disagreed112524Disagreed1Disagreed 1Disagreed 1
9931Rep125/01/2024Agreed29931Agreed1Agreed 1Agreed 1, Incomplete 1
9931Rep227/01/2024Incomplete29931Incomplete1Incomplete 1Agreed 1, Incomplete 1
1 ACCEPTED SOLUTION
Nasif_Azam
Impactful Individual
Impactful Individual

Hey @JK-1 ,

Yes, you can create a measure in Power BI that replicates the behavior of the “overall_show across all rows merged result” column (in red) i.e., generating a consolidated summary of counts (Agreed, Disagreed, Incomplete) within the same campaign, and repeating it across all relevant rows for visual consistency.

Objective

You want a DAX measure that:

  • Groups responses by type (Agreed, Disagreed, Incomplete) per Campaign

  • Shows the aggregated count per type

  • Repeats the result across each row of the campaign — not at the visual total level only

DAX Measure

Campaign Response Summary = 
VAR CurrentCampaign = SELECTEDVALUE('Table'[Campaign])
RETURN
CALCULATE (
    CONCATENATEX (
        VALUES('Table'[View]),
        'Table'[View] & " " & 
        CALCULATE(COUNTROWS('Table')),
        ", ",
        'Table'[View], 
        ASC
    ),
    ALLEXCEPT('Table', 'Table'[Campaign])
)

 

For Detailed Information:

Power BI: Repeating Aggregated Values in a Table Visual

DAX Patterns: Distinct Count per Group

 

If you found this solution helpful, please consider accepting it and giving it a kudos (Like) it’s greatly appreciated and helps others find the solution more easily.


Best Regards,
Nasif Azam

View solution in original post

3 REPLIES 3
maruthisp
Solution Specialist
Solution Specialist

Hi JK-1 ,

Please find the below attached pbix file with a solution as per your original post.
rows split.pbix

 

Please let me know if you have any further questions or need clarifications.

 

If this reply helped solve your problem, please consider clicking "Accept as Solution" so others can benefit too. And if you found it useful, a quick "Kudos" is always appreciated, thanks! 

 

Best Regards, 

Maruthi 

LinkedIn - http://www.linkedin.com/in/maruthi-siva-prasad/ 

X            -  Maruthi Siva Prasad - (@MaruthiSP) / X

Nasif_Azam
Impactful Individual
Impactful Individual

Hey @JK-1 ,

Yes, you can create a measure in Power BI that replicates the behavior of the “overall_show across all rows merged result” column (in red) i.e., generating a consolidated summary of counts (Agreed, Disagreed, Incomplete) within the same campaign, and repeating it across all relevant rows for visual consistency.

Objective

You want a DAX measure that:

  • Groups responses by type (Agreed, Disagreed, Incomplete) per Campaign

  • Shows the aggregated count per type

  • Repeats the result across each row of the campaign — not at the visual total level only

DAX Measure

Campaign Response Summary = 
VAR CurrentCampaign = SELECTEDVALUE('Table'[Campaign])
RETURN
CALCULATE (
    CONCATENATEX (
        VALUES('Table'[View]),
        'Table'[View] & " " & 
        CALCULATE(COUNTROWS('Table')),
        ", ",
        'Table'[View], 
        ASC
    ),
    ALLEXCEPT('Table', 'Table'[Campaign])
)

 

For Detailed Information:

Power BI: Repeating Aggregated Values in a Table Visual

DAX Patterns: Distinct Count per Group

 

If you found this solution helpful, please consider accepting it and giving it a kudos (Like) it’s greatly appreciated and helps others find the solution more easily.


Best Regards,
Nasif Azam

Thank you. Always amazed 👍

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.