subtracting numbers to be inclusive

  • Thread starter Thread starter Jeffrey
  • Start date Start date
J

Jeffrey

cell A1 starting check number = 1
cell B1 ending check number = 10

=sum(b1-a1) will equal 9

I needs it to equal 10 (total number of checks)

is there a beter way then

=sum((b1-a1)+1)=10

Thanks
 
You don't need the SUM function. Just use

=B1-A1+1


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top