March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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?
Solved! Go to 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)
)
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)
)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
125 | |
85 | |
69 | |
54 | |
44 |
User | Count |
---|---|
204 | |
105 | |
99 | |
64 | |
54 |