Two Problems
Two Problems
(OP)
It eludes me:
Q1
Is it possible to include the file name in a spreadsheet (not the header or footer)?
Q2
There must be a way to create a number that represents the difference in days between two dates. Common excel exercise, I would think. Where the number is a real number with a fractional component if it exists. For example, a formatted date 2012-08-27 [=Today()]and 2012-10-26.
Dik
Q1
Is it possible to include the file name in a spreadsheet (not the header or footer)?
Q2
There must be a way to create a number that represents the difference in days between two dates. Common excel exercise, I would think. Where the number is a real number with a fractional component if it exists. For example, a formatted date 2012-08-27 [=Today()]and 2012-10-26.
Dik





RE: Two Problems
=CELL("filename")
You just subtract one cell with one date from another cell with the other date. The result is decimal days between the dates. say:
A1 = "12/20/92"
A2 = Now()-A1 = 7190.31 (you'll need to format the cell for number instead of date)
TTFN
FAQ731-376: Eng-Tips.com Forum Policies
RE: Two Problems
Dik