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
Nihed
Helper III
Helper III

display issue

Hello,

I have the following table in power BI and I wanted to display only the "M EUR" total how I can do it please?

Nihed_1-1645100466072.png

 

4 REPLIES 4
v-jingzhang
Community Support
Community Support

Hi @Nihed 

 

Did other replies solve your problem? If it's solved, please accept a helpful reply as Solution. If not, please share some dummy data to help us understand it better.

 

E.g. Are "M CCY" and "M EUR" columns or measures? If they are columns, what is the table structure of the original data table? If they are measures, share their formula. The solutions will be different in both scenarios.

 

Best Regards,
Community Support Team _ Jing

Anonymous
Not applicable

Hi @Nihed ,
What I understand is that you want this result 

Aditya_Meshram_0-1645103323075.png

This can be achieved by making this measure :

M EUR only Total = 
IF(
    ISINSCOPE('Table'[Currency key]),
    BLANK(),
    SUM('Table'[M EUR])
)

 

 

Regards

ValtteriN
Super User
Super User

Hi,

Try something like this:

Onlytotal for value2 = IF(not(ISFILTERED('Matrix example'[Item]))&&SELECTEDVALUE('Matrix example'[Material])="Wood",SUM('Matrix example'[Value2]),BLANK())



This DAX will only show total values for material "wood" you can utilize same logic to create the measure you want.

ValtteriN_0-1645101202783.png

 



I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!

My LinkedIn: https://www.linkedin.com/in/n%C3%A4ttiahov-00001/





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




amitchandak
Super User
Super User

@Nihed , Assume you do want display total of  M CCY - Assuming it is measure

a new measure =

if(not(isinscope(Table[Currency key])), Blank(), [M CCY])

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

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.