Enter value in lb:
Converting pounds to grams is a common requirement in cooking, shipping, scientific measurements, and engineering. A pound is an Imperial and US customary unit of mass, while the gram is the SI base unit. Accurate lb ↔ g conversion ensures recipe fidelity, correct dosing, and reliable logistics calculations.
By international agreement:
1 lb = 453.59237 g
Since 1 lb = 0.45359237 kg and 1 kg = 1000 g, multiplying yields:
0.45359237 × 1000 = 453.59237 g.
Mass (g) = Mass (lb) × 453.59237
Mass (lb) = Mass (g) ÷ 453.59237
Retain at least six significant digits in intermediate calculations; for everyday use, rounding to one decimal (e.g., 453.6 g) is sufficient.
Define a constant in your code or spreadsheet: LB_TO_G = 453.59237 to avoid “magic numbers.”
Confirm the weight value in pounds from your scale or data source.
Multiply pounds by 453.59237 to obtain grams.
Round to the required precision and append “g” to the result.
Convert 2 lb to grams:
2 × 453.59237 = 907.18474 g → 907.185 g.
Convert 0.5 lb to grams:
0.5 × 453.59237 = 226.796185 g → 226.796 g.
Convert 10 lb to grams:
10 × 453.59237 = 4 535.9237 g → 4 535.924 g.
For recipes, convert all ingredient weights before scaling batch sizes to maintain ratios.
| Pounds (lb) | Grams (g) |
|---|---|
| 0.25 | 113.398 |
| 0.5 | 226.796 |
| 1 | 453.592 |
| 2 | 907.185 |
| 5 | 2 267.962 |
| 10 | 4 535.924 |
const LB_TO_G = 453.59237;
function poundsToGrams(lb) {
return lb * LB_TO_G;
}
console.log(poundsToGrams(2)); // 907.18474
LB_TO_G = 453.59237
def pounds_to_grams(lb):
return lb * LB_TO_G
print(pounds_to_grams(0.5)) # 226.796185
Assuming pounds in A2:
=A2*453.59237 → grams.
Use named ranges (WeightLb, WeightG) for clarity in complex sheets.