calculating number of days between first day to last day, inclusiv

D

Damian

I was wandering what function or formula to us to calculate between and
including two dates. For example March 23 to March 23 would be one day.
 
J

JE McGimpsey

One way:

A1: <date1>
A2: <date2>

A3: =A2 - A1 + 1

Format A3 as General or another Number format
 
Top