The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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) )
User | Count |
---|---|
25 | |
10 | |
8 | |
7 | |
6 |
User | Count |
---|---|
32 | |
12 | |
10 | |
10 | |
9 |