M MD May 25, 2010 #1 I need a formula to count the number of days from TODAY() to the last entry in column "J". Column "A" is date column.
I need a formula to count the number of days from TODAY() to the last entry in column "J". Column "A" is date column.
M Max May 25, 2010 #2 This will grab the date in col A corresponding to the last entry in col J =LOOKUP(2,1/(J2:J100<>""),A2:A100) Hence you could use this: =TODAY()-LOOKUP(2,1/(J2:J100<>""),A2:A100) Adapt the ranges to suit
This will grab the date in col A corresponding to the last entry in col J =LOOKUP(2,1/(J2:J100<>""),A2:A100) Hence you could use this: =TODAY()-LOOKUP(2,1/(J2:J100<>""),A2:A100) Adapt the ranges to suit
M MD May 25, 2010 #3 Many thanks Max that works ok Max said: This will grab the date in col A corresponding to the last entry in col J =LOOKUP(2,1/(J2:J100<>""),A2:A100) Hence you could use this: =TODAY()-LOOKUP(2,1/(J2:J100<>""),A2:A100) Adapt the ranges to suit Click to expand...
Many thanks Max that works ok Max said: This will grab the date in col A corresponding to the last entry in col J =LOOKUP(2,1/(J2:J100<>""),A2:A100) Hence you could use this: =TODAY()-LOOKUP(2,1/(J2:J100<>""),A2:A100) Adapt the ranges to suit Click to expand...