trying to replace the total in a grid
using this measure:
Solved! Go to Solution.
HI @bsheffer ,,
Measure =
calculate([merchant_number count], FILTER (Dim View_MID_Properties', [Merchant Product distinctcount] > 1))
Regards,
HN
Hi @bsheffer ,
Try this
Merchant MultiProduct Flag =
SWITCH (
TRUE (),
ISINSCOPE ( 'Dim View_MID_Properties'[MERCHANT_NUMBER] )
&& [Merchant Product distinctcount] >= 2, 1,
ISINSCOPE ( 'Dim View_MID_Properties'[MERCHANT_NUMBER] )
&& [Merchant Product distinctcount] < 2, 0,
5
)
Regards,
Harsh Nathani
Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)
no it still has issues with the
HI @bsheffer ,,
Measure =
calculate([merchant_number count], FILTER (Dim View_MID_Properties', [Merchant Product distinctcount] > 1))
Regards,
HN
thanks
User | Count |
---|---|
420 | |
260 | |
106 | |
96 | |
81 |