Forum Discussion
Displaying Multiple Currency Types in a Matrix
- 5 years ago
Figured out the performance issue. Kind of embarrased it was so simple:
The original concatenate formula i mentioned in the first reply was concatenating every cell, even blanks which resulted in ppor performance.
adjusting the formula to the following gave me my intended results with good performance:
IF (
NOT ( ISBLANK ( [MAX Price] ) ),
CONCATENATE (
MAX ( 'fact table'[Currency] ) & " ",
ROUND ( [Max Price], 2 )
),
BLANK ()
)
Figured out the performance issue. Kind of embarrased it was so simple:
The original concatenate formula i mentioned in the first reply was concatenating every cell, even blanks which resulted in ppor performance.
adjusting the formula to the following gave me my intended results with good performance:
IF (
NOT ( ISBLANK ( [MAX Price] ) ),
CONCATENATE (
MAX ( 'fact table'[Currency] ) & " ",
ROUND ( [Max Price], 2 )
),
BLANK ()
)