Forum Discussion
Measure with relationship blows up table visual
- 6 years ago
Hi Anonymous ,
It is caused by the row context where the measure "HasSpecialRows" is. When put it into the "order" table, it will show based on order(id).
You could try to create a calculated column as Daviejoe suggested. Or you could try the formula below to create a new measure.
Measure = IF ( MAX ( 'order'[id] ) = MAX ( orderrow[order_id] ) && MAX ( 'order'[id] ) <> BLANK (), IF ( SUM ( orderrow[IsSpecialRow] ) > 0, "True", "False" ) )Best Regards,
Xue Ding
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Anonymous ,
It is caused by the row context where the measure "HasSpecialRows" is. When put it into the "order" table, it will show based on order(id).
You could try to create a calculated column as Daviejoe suggested. Or you could try the formula below to create a new measure.
Measure =
IF (
MAX ( 'order'[id] ) = MAX ( orderrow[order_id] )
&& MAX ( 'order'[id] ) <> BLANK (),
IF ( SUM ( orderrow[IsSpecialRow] ) > 0, "True", "False" )
)
Best Regards,
Xue Ding
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.