Question for the Excel Experts

  • Thread starter Thread starter Digital2k
  • Start date Start date
D

Digital2k

I have a cell (L2) with this formula: =NOW(). and this format: "mmmm" to
show the current month.

I have another cell (H3) with this formula: =IF(L2="January",T10,).

The problem is cell (H3) is reading the formula and not the text.

How can I have the current month show in (L2) but have (H3) read the Text
and not the formula?

Please Help

Thanks, Digital2k
 
Hi!

Change the formula in L2 to:

=TEXT(NOW(),"mmmm")
The problem is cell (H3) is reading the formula and not the text.

The problem is/was that NOW( ) returns a NUMERIC value but you have
formatted it to look like the TEXT string JUNE.

Try this:

Enter =NOW() in an empty cell
Now, format that cell as GENERAL.
The value you now see is the cells true underlying value.

Biff
 
Hi. You've got an excellent solution. Just to mention another general
idea:

L2 = Now()

=IF(MONTH(L2)=7,"It's July",T10)
 

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

Similar Threads

simple minus formula not working. 2
Excel Getting an annualized figure based on YTD in Excel 1
VBA? 3
VBA? 1
Duff Date Text 3
Conditional formatting Question 3
error in formula 5
Vlookup result in a message box 10

Back
Top