Managing multiple sellers on FishGoo requires clear, at-a-glance insights into performance. A dynamic ranking table within your spreadsheet, powered by formulas and conditional formatting, is the perfect tool. This guide will walk you through creating a system that highlights top-rated sellers based on QC ConsistencyShipping Accuracy.
Step 1: Structure Your Data
Start by organizing your raw data. Assume your sheet has the following columns for each seller:
| Seller ID | Seller Name | QC Pass Rate (%) | Shipping Accuracy (%) | Total Orders |
|---|---|---|---|---|
| A101 | AquaMaster | 98.5 | 99.2 | 150 |
| B202 | BlueFin Co. | 87.0 | 95.1 | 89 |
Step 2: Calculate a Composite Ranking Score
We'll create a new column, "Overall Score," to combine both key metrics. You can weight them according to priority. Here, we give QC Consistency a 60% weight and Shipping Accuracy 40%.
= (C2 * 0.6) + (D2 * 0.4) // Assuming C=QC%, D=Shipping%
This formula calculates a weighted score for each seller. Drag it down for all rows.
Step 3: Rank the Sellers
Add a "Rank" column. Use the RANK.EQ
=RANK.EQ(F2, $F$2:$F$100, 0) // Assuming F=Overall Score, 0 for descending rank
This will assign rank #1 to the highest score.
Step 4: Visualize with Conditional Formatting (Color Codes)
Now, apply color coding to instantly visualize performance tiers.
- Top Tier (Green):"Format only cells that contain""Cell Value greater than or equal to"
- Mid Tier (Yellow):85 and 94.9.
- Needs Review (Red):less than 85.
Additionally, use color scales (Green-Yellow-Red) on the QC and Shipping columns for gradient insights.
Step 5: Create a Sorted Leaderboard View
For a clean ranking table, create a separate sheet or area. Use the SORT
=SORT(A2:F100, 6, FALSE) // Sorts the range A2:F100 by column 6 (Overall Score) in descending order
This creates a live leaderboard that updates automatically as your source data changes.
Example Output: FishGoo Seller Ranking Table
| Rank | Seller Name | QC % | Shipping % | Overall Score | Status |
|---|---|---|---|---|---|
| 1 | AquaMaster | 98.5 | 99.2 | 98.78 | Top Rated |
| 2 | CoralDirect | 92.0 | 96.5 | 93.8 | Solid |
| 15 | BlueFin Co. | 87.0 | 95.1 | 90.24 | Review |
Conclusion
By integrating weighted formulasconditional formatting