SOLVED

If cell is true return nothing

Brass Contributor

Hi,

 

Col B = contains dates in the range

Col L = contains dates in some cells in the range

 

At the moment I am using the following formula:

=TODAY()-B12

 

Now I want to put a condition into the formula.

Whenever a cell in col L contains a value then return nothing

 

Thank you for taking an interest.

 

 

1 Reply
best response confirmed by packie (Brass Contributor)
Solution

@packie Perhaps this:

=IF(ISBLANK(L12),TODAY()-B12,"")

1 best response

Accepted Solutions
best response confirmed by packie (Brass Contributor)
Solution

@packie Perhaps this:

=IF(ISBLANK(L12),TODAY()-B12,"")

View solution in original post