Forum Discussion
dcimcclelland
4 years agoNew Member
Text Measure not displaying in Visual
Hi, (sorry I'm a novice...) I have created a Measure to return a text string with 6 possible results (depending on which range a calculated result falls into). In Visuals I can create a ...
- 4 years ago
What you can do is create a different measure to each category, and put each of those in the chart.
Each measure Would likely be something similar to:
No Sales= CALCULATE( COUNT(Table[number]), FILTER(Table, [Stock Turn Range] = "no sales" )
rbriga
4 years agoImpactful Individual
What you can do is create a different measure to each category, and put each of those in the chart.
Each measure Would likely be something similar to:
No Sales=
CALCULATE(
COUNT(Table[number]),
FILTER(Table,
[Stock Turn Range] = "no sales"
)