Please members I want to create a slice from a table base on linesman, faultman and maintenance man from a Designation column
Solved! Go to Solution.
If you are looking for OR functionality, try IN([Designation],{"linesman","faultman","maintenance man"})
If AND is needed, use
AND(
[Designation]="linesman",
[Designation]="faultman",
[Designation]="maintenance man"
)
User | Count |
---|---|
16 | |
8 | |
6 | |
3 | |
2 |