Counting Dates

R

Riyaz

I need to count days between 2 dates in 2 cells. Like B:2-B:1. In case B2 is
empty i need that to be counted as on today-system date. Can you help on that?
 
R

Rick Rothstein \(MVP - VB\)

This is probably what you are looking for...

=IF(B2="",TODAY()-B1,B2-B1)

Rick
 
Top