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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
kartiklal7
Frequent Visitor

Show table total only when all Currencies are the same

Hi All, 

 

I'm representing certain metrics in a table in Power BI. For the columns "Estimated Annual Renewal Amount in Currency" and "Transacted Annual Amount in Currency" I only want to show the total at the bottom when the Currency is the same in every row. If there is a mix of currencies like in the screenshot below I do not want to show a total for these columns. 

 

Is there a way to do that? 

 

 

kartiklal7_0-1660041845895.png

 

1 ACCEPTED SOLUTION

If you have a unique row in the table visual, e.g. Category, then you could try

Measure name = 
var currentValue = current measure definition
return IF( ISINSCOPE( 'Table'[Category]), currentValue,
IF( HASONEVALUE( 'Table'[Currency]), currentValue)
)

View solution in original post

3 REPLIES 3
johnt75
Super User
Super User

You can use HASONEVALUE, like

Measure Name = IF( HASONEVALUE( 'Table'[Currency]), 
Current measure definition
)

@johnt75 ,

 

Thanks for the reply.

 

Your solution works but it slows down the performance of the table significantly. Is there another more efficient way to do this? 

If you have a unique row in the table visual, e.g. Category, then you could try

Measure name = 
var currentValue = current measure definition
return IF( ISINSCOPE( 'Table'[Category]), currentValue,
IF( HASONEVALUE( 'Table'[Currency]), currentValue)
)

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.