My project has an unusual business requirement. I have a bunch of records where each record belongs to one of a few groups, along with a pass/fail value. I want to be able to get the count of how many passes and fails there are total, summing up passes and fails by group. PowerBI lets me do this easily.
Here's the unusual bit: I have one secretive group that, instead of the data coming from the main table with all the summed pass/fail records, gives me data in the form of a single record with some # of passes and some # of fails. How can I integrate this with the main table such that I can see 1) Total number of pass/fail records across all the data with 2) filtering/grouping by group and 3) the "secret" shows up just like any other group (except pulled from this single record instead of summed).
I was able to make two Measured columns (for pass and fail for that group) with DAX but I can't filter by group with that. I was thinking of inserting bogus columns in an earlier step in the data collection process.