Slice formula

Please members I want to create a slice from a table base on linesman, faultman and maintenance man from a Designation column

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”
)

1 Like

thanks it work like magic

Good to hear!