Thread: Formula help
View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
JE McGimpsey JE McGimpsey is offline
external usenet poster
 
Posts: 4,624
Default Formula help

One way:

C17: =IF(C13+C15<6,"N/A","REQUIRED")

Another (if you really want the value of C13+C15 in C17):

C17: =C13+C15

Format the cell with Format/Cell/Number/Custom

[<6]"N/A";"REQUIRED"


In article ,
Codeman wrote:

I need help with the following;

I want to add cells C13 + C15 and their sum to be in C17.
However, C17s sum should show N/A until the sum is 6 or more at which time
the display in C17 should read REQUIRED and not a number.

Can this be done? If so what would be the formula?

Thanks in advance for your help.