After you read your meter, here's a handy calculator to help with the math.
With the forms on this page you can calculate your Albemarle, NC electric bill.
Enter 'kilowatts used' in the form, click the button and the cost will be calculated.
This page will not function without a JavaScript enabled browser.
Below is the math used in these forms.
where 'K = Kilowatt Hours'.
Residential Service
if (K <= 500)
{
Cost = K * 0.09412;
}
else
{
Cost = 500 * 0.09412 + (K - 500) * 0.10036 + 11.14;
}
All Electric Service
if (A <= 500)
{
Cost = A * 0.09412;
}
else
{
Cost = 500 * 0.09412 + (A - 500) * 0.09221 + 11.14;
}