agentsclimarketplace

Run1 excel two way lookup

Skill cxcscmu/SkillLearnBench/skills/b3-teacher-feedback-gemini-3-flash-preview/weighted-gdp-calculation/run1_excel-two-way-lookup

Perform a two-dimensional lookup in Excel to retrieve data based on both a row criteria (e.g., series code) and a column criteria (e.g., year).From its SKILL.md

Install
npx -y skills add cxcscmu/SkillLearnBench --skill run1_excel-two-way-lookup

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

SKILL.md

1.1 KB, 235 tokens by cl100k_base, as published. Nobody here has run it

To retrieve data from a table based on two variables, you can use the INDEX and MATCH combination or nested XLOOKUP.

INDEX and MATCH (Two-Way)

This is the most robust method for older and newer versions of Excel. =INDEX(data_range, MATCH(row_criteria, row_header_range, 0), MATCH(column_criteria, column_header_range, 0))

  • data_range: The grid containing the values you want to extract.
  • row_criteria: The specific value to look for in the first column (e.g., Series Code).
  • MATCH(..., 0): Finds the exact position of the criteria.

XLOOKUP (Nested)

If using modern Excel, you can nest XLOOKUPs: =XLOOKUP(row_criteria, row_header_range, XLOOKUP(column_criteria, column_header_range, data_range))

Absolute Referencing

When dragging formulas across a range, ensure you use $ to lock the source data ranges (e.g., $D$21:$D$40) while allowing the criteria references (like year or country) to shift appropriately.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.