Thread: function
View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.misc
Ron Coderre Ron Coderre is offline
external usenet poster
 
Posts: 2,118
Default function

Well, near as I can guess....
maybe this?

P5: =IF(VALUE(O5)=0,"Pull",IF(VALUE(O5)0,"Keep",IF(G5 ="will upd","to be
set","")))


Is that something you can work with?
***********
Regards,
Ron

XL2002, WinXP


"algebroni" wrote:

hey Ron what i am trying to do is cell p5 contain either keep pull or to be
set in other words keep and pull depends on O5 And to be set depends on G5.
is there anyway to do it or some sort of function. thanks

"Ron Coderre" wrote:

So far, this what I see

If O5=0 then return: "Pull"
Otherwise,
If 050 then return:"Keep"

You also have....
If G5="will upd" then return: "to be set"
Otherwise,
return an empty string:""

Is there supposed to be a relationship between those 2 phrases?

***********
Regards,
Ron

XL2002, WinXP


"algebroni" wrote:

Can anybody tell me what's wrong with this
=IF(VALUE(O5)=0,"Pull",IF(VALUE(O5)0,"Keep"))=IF( G5="will upd","to be
set",""). Thanks