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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

Hide values with calculate

Hi people, 

 

Im new in power bi and have a couple of questions with my data model, its very simple,

 

I have the following measure to retrieve only Argentina Sales as you can see on "Visual A", I dont have a DimTable for countries.

 

My question is, is there a way to show only the data of the country (or element in any other situation) that im filtering with CALCULATE as in "Visual C" or "Visual D"?

 

Thank you

 

Calculate.png

 

 

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

For Visual C just make a measure saying if(selectedvalue(country)="Argentina",sum(sales),blank and in tick the dropdown just select(show items with 0 data) and for visual D just untick this checkbox.

 

 

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

For Visual C just make a measure saying if(selectedvalue(country)="Argentina",sum(sales),blank and in tick the dropdown just select(show items with 0 data) and for visual D just untick this checkbox.

 

 

CNENFRNL
Community Champion
Community Champion

Hi, @Anonymous , you might want to try

= CALCULATE ( [Total Sales], KEEPFILTERS ( FactTable[Country] = "Argentina" ) )

Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors