TRUE/FALSE STATEMENT

D

Dave

Hi,

lI have a formula that returns a TRUE or False statement. If the statement
is TRUE I want the cell to show the TITLE of the column. How do i do this.
The current formula is:

=((TODAY()-WEEKDAY(TODAY(),2))<$A2)

Thanks
 
K

Kevin Smith

Hello,

if you do ...
=IF(((TODAY()-WEEKDAY(TODAY(),2))<$A2),$A$1,"")

If this is true you return the info in cell A1 otherwise it returns nothing.
 
J

Jacob Skaria

I am not sure I have understood you correctly...TITLE means the header cell
or what?

=IF(your formula,if true,if false)

=IF(TODAY()-WEEKDAY(TODAY(),2)<$A2,$A$1)

If this post helps click Yes
 
D

Dave

Thats great! Works briliiantly!

Kevin Smith said:
Hello,

if you do ...
=IF(((TODAY()-WEEKDAY(TODAY(),2))<$A2),$A$1,"")

If this is true you return the info in cell A1 otherwise it returns nothing.
 
D

Dave

Thanks. This works greatly!

Jacob Skaria said:
I am not sure I have understood you correctly...TITLE means the header cell
or what?

=IF(your formula,if true,if false)

=IF(TODAY()-WEEKDAY(TODAY(),2)<$A2,$A$1)

If this post helps click Yes
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top