Run1 excel percentage scaling rounding
[COLM'26] SkillLearnBench is the first benchmark for evaluating continual learning methods that automatically generate agent skills.
npx -y skills add cxcscmu/SkillLearnBench --skill run1_excel-percentage-scaling-roundingAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
What its author says it does
Copied from the file, not written here
Convert decimal percentages to whole-number representations and round to a specific decimal place.
SKILL.md
0.8 KB, as published. Nobody here has run it
When a task requires a percentage to be displayed as a whole number (e.g., 0.1234 as 12.3), you must scale the value within the formula.
Scaling and Rounding
- Multiply by 100: Convert the decimal (0.123) to a percentage-base (12.3).
- Round: Use the
ROUNDfunction to limit the decimal places.
Formula:
=ROUND((calculation) * 100, 1)
- calculation: The math (e.g.,
Net Exports / GDP). - 1: Specifies rounding to one decimal place.
Contextual Example:
If calculating Net Exports as % of GDP:
=ROUND((NetExports_Value / GDP_Value) * 100, 1)
This results in 15.2 instead of 0.15234....