Home > Building a Seller Ranking Table in FishGoo: A Formula & Color-Coding Guide

Building a Seller Ranking Table in FishGoo: A Formula & Color-Coding Guide

2026-02-28

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 IDSeller NameQC Pass Rate (%)Shipping Accuracy (%)Total Orders
A101AquaMaster98.599.2150
B202BlueFin Co.87.095.189

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

RankSeller NameQC %Shipping %Overall ScoreStatus
1AquaMaster98.599.298.78Top Rated
2CoralDirect92.096.593.8Solid
15BlueFin Co.87.095.190.24Review

Conclusion

By integrating weighted formulasconditional formatting