Forum Discussion
gittelena
6 years agoMicrosoft Employee
Custom column when data fields are used differently
Hey there, We have 2 vendors who managed cases in our tool. Vendor A actively uses a " case completed" field that indicated weather a case was completed or not ("yes": completed, "no": not comple...
v-yingjl
6 years agoCommunity Support
Hi gittelena ,
Not certain what is your expected output, if you want to filter some specific data, maybe create a filter table like this:
Table 2 =
FILTER(
ALL('Table'),
('Table'[Vendors] = "Vendor A" &&
'Table'[case completed] = "yes") ||
'Table'[Vendors] = "Vendor B"
)Then create measure to count cases of each vendors.
You can share your expected output and sample data for further discussion.
Best Regards,
Yingjie Li
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.