Forum Discussion
Measure with multiple Filters
- Anonymous4 years ago
Hi Heinrich ,
According to this:It works but I do get 11K and not the number like 10750. Is it possible to show the whole number.
If you used Card visual to show the measure, please go to Format pane--> Change the Display units of Value as from Thousands to None.
Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Heinrich
Is [Audio Good Stream Count] a measure or a column summarized by count?
If a measure please provide the code that you are using. If a column then confirm it is in the same table 'CQD'
Thank you
Hi Heinrich
Please try
Day_outlet =
CALCULATE (
COUNT ( CQD[Audio Good Stream] ),
CQD[Media Type] = "Audio",
CQD[Packet Utilization] <> "064: [1 – 2)",
( CQD[QoE Record Available] = "True" )
)- Heinrich4 years agoPost Partisan
Great Tamerj1
It works but I do get 11K and not the number like 10750.
Is it possible to show the whole number.
Regards
Heinrich- tamerj14 years agoCommunity Champion
Heinrich
TryDay_outlet = FORMAT ( CALCULATE ( COUNT ( CQD[Audio Good Stream] ), CQD[Media Type] = "Audio", CQD[Packet Utilization] <> "064: [1 – 2)", ( CQD[QoE Record Available] = "True" ) ), "#" )- Heinrich4 years agoPost Partisan
Hi tamerj1
Thank you very much.
Will test it.
Regards
Heinrich