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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.

Reply
FarmerKenny
Helper II
Helper II

Is there a way to display column that is unfiltered in a visualization that has other filters?

I have this visual and  to make the Healthy_People_Objective_Target column to be unfiltered and to appear at the same level ast the first row ( unfiltered by the County Column Filter) .  Can someone please share with me how to do that? 

Example of Healthy_People_Objective_Target that needs to be a column next to the filtered California and SLO columnsExample of Healthy_People_Objective_Target that needs to be a column next to the filtered California and SLO columns

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @FarmerKenny ,

Please have a try.

Create a measure.

meaasure =
CALCULATE (
    SUM ( summary_Sheet[Healthy_People_Objective_Target] ),
    FILTER (
        ALL ( summary_Sheet ),
        summary_Sheet[Health_Indicator_Desc]
            = SELECTEDVALUE ( summary_Sheet[Health_Indicator_Desc] )
            && summary_Sheet[County] = SELECTEDVALUE ( summary_Sheet[County] )
    )
)

vpollymsft_0-1646638344498.png

Best Regards

Community Support Team _ Polly

 

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

21 REPLIES 21
Anonymous
Not applicable

Hi @FarmerKenny ,

Please have a try.

Create a measure.

meaasure =
CALCULATE (
    SUM ( summary_Sheet[Healthy_People_Objective_Target] ),
    FILTER (
        ALL ( summary_Sheet ),
        summary_Sheet[Health_Indicator_Desc]
            = SELECTEDVALUE ( summary_Sheet[Health_Indicator_Desc] )
            && summary_Sheet[County] = SELECTEDVALUE ( summary_Sheet[County] )
    )
)

vpollymsft_0-1646638344498.png

Best Regards

Community Support Team _ Polly

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Anonymous
Not applicable

Hi @FarmerKenny ,

Please refer to my pbix file to see if it helps you.

Create a measure.

Measure = CALCULATE(SUM(summary[Healthy_People_Objective_Target]),FILTER(ALL(summary),summary[Health_Indicator_Desc]=SELECTEDVALUE(summary[Health_Indicator_Desc])))

vpollymsft_0-1646373067042.png

If I have misunderstood your meaning, please provide more details about your desired output.

 

Best Regards

Community Support Team _ Polly

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

 

Whoops the example below is also filtered by County. Here are the "unfiltered by County column" values that the column should contain. 

Healthy People Objective Target
 
72.8
 
 
 
43.6
20.4
22.6
18.6


Thanks, but that solution does not work.  Please refer to the desired results tab of the excel document in the Google drive URL.  The new unfiltered column should have this result.  (This is pic of a seperate visualization that is unfiltered for the County column.  All other filters are valid.  Can you please try again?

FarmerKenny_0-1646409261661.png

 

parry2k
Super User
Super User

@FarmerKenny thanks for sharing the files, one thing is not clear what output you are looking for, can you add another sheet in the excel file and explain the output? Thanks!



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Here is a quick markup of what I want to do. 

 

2022-03-02_14-00-55.png

I just sent a v2.pbix file up to the Google Docs folder that contains the v4 version. This v2 version shows the columns just like the "Desired Results" tab on the Source Excel Document that contains the source data. 

I just added the Desired Results tab to the Excel Doc that I sent to you on Google Drive. It should help. 

 

See the Desired Results Tab for the desired columnar format and values.  The first to colums are filtered by County, which I don't want filtered on the Third column.  Thanks for  your help. @FarmerKenny 

parry2k
Super User
Super User

@FarmerKenny to be very honest your question is not very clear, here is what I would recommend. put sample data in an excel file with the expected output, and share using one drive/google drive.



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

@parry2k , I just got permisson to share it.  Will post the link to the excel file and the .pbix file that I am working to solve this issue on. 

 

@parry2k , I am requesting permisson to share this data now. It may be HIPPA protected, and if it is, I can't share it. If it is HIPPA protected, could I send you a Teams request?

FarmerKenny
Helper II
Helper II

So far, none of the proposed solutions have worked to solve this issue.  I gave my customer this work-a-round, but she rejected it. However it shows the correct subtotals by County.   She wants the Sum Rate/Percentage column filtered by the County, but not the Sum of the New Column for Target column, she wants it to be a sum of all values for the table. 

FarmerKenny_0-1646242428332.png

 

FarmerKenny
Helper II
Helper II

My configuration looks like this: 2022-03-01_14-02-54.png

 

FarmerKenny
Helper II
Helper II

@parry2k , I did excactly as you instructed above, in a few differenct permetations, and still it fails to work.  I tried it as  Measue and as a new column  using this syntax:  

Measure for Target = CALCULATE ( SUM( 'summary'[Healthy_People_Objective_Target] ),
REMOVEFILTERS ( 'summary'[County])
)
but I don't wish to SUM that column, just display it's values. 
 
parry2k
Super User
Super User

@FarmerKenny you need to add a

Measure for Target = 
CALCULATE ( SUM ( YourTable[Healty_People_Objective_Target ), 
REMOVEFILTERS ( YourTable[Column Name used on the columns in the matrix visual] )
)

 

and then use the above measure in the matrix visual and put this as a first measure in the value section so that it is right under the country name.

 

Follow us on LinkedIn and YouTube.gif to our YouTube channel

I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

measure for target which will be something like this:

 

 



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

FarmerKenny
Helper II
Helper II

And would be positioned  next to the CALIFORNIA and San Luis Obispo columns in the first picture. 

 

FarmerKenny
Helper II
Helper II

2022-03-01_11-56-31.png So that it looks like this, as a primary (unfiltered)  column. 

FarmerKenny
Helper II
Helper II

Effectively, I want to promote the Healthy_People_..... column up one level so that it stands next to (not under) the County Columns. 

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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