Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Greetings,
Below is the table where i have some sort of transit time condition status, which has 4 consecutive columns contains region, mode, gross status and net status.(where i have 20K+ line items)
| Date | Region | Mode | Gross status | Net status |
| 11/03/2022 | USA | Air | Met | Not Met |
| 17/03/2022 | Canada | Air | Met | Not Met |
| 15/04/2022 | Canada | Ocean | Not Met | Met |
| 27/04/2022 | EU | Ocean | Not Met | Not Met |
| 06/05/2022 | Chicago | Air | Met | Met |
I want to create a table in powerBI where it has to show the status based on two slicers, where i need to include category as one slicer and statuses as one slicer.
so what i expect my output to look like is attached as reference,
which both the category and percentage has to be changed based on the slicer i choose,
percentage is nothing but the met status of the shipment on how much the month has achieved the performance
@PoojaS5 , better to unpivot columns Gross status, and Net status in the power query
Unpivot Data(Power Query): https://youtu.be/2HjkBtxSM0g
Then you can have a measure
divide(countrows(filter(Table, table[Status]= "Met") ), countrows(Table) )
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 8 | |
| 6 | |
| 5 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 11 | |
| 10 | |
| 8 | |
| 8 |