Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
I have a table of employees - Emp ID, Emp Name, Dept ID. I created two measures:
- Emp Count = count(Emp ID)
- Count Group = if(Emp Count < 10, "10 and below", "Over 10")
Can I create the table visual below without creating a table:
Count Group | # of Depts |
10 and below | 7 |
Over 10 | 1 |
Solved! Go to Solution.
Hi,
Here is one way to this:
data:
Dax:
You can add unichar 10 for linebreak:
Proud to be a Super User!
Hope it helps
GROUP BY Count Group = SWITCH(TRUE(),
[# of Depts] <= 10, "10 and below",
[# of Depts] > 10, "Over 10"
)
If i understand your requiement correctly
Thank you
Hi,
Here is one way to this:
data:
Dax:
You can add unichar 10 for linebreak:
Proud to be a Super User!
Thank you
User | Count |
---|---|
12 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
24 | |
19 | |
14 | |
10 | |
7 |