View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Mike H Mike H is offline
external usenet poster
 
Posts: 11,501
Default Formula to send answer from 2 sources to one column

sorry I went parenthesis mad

=(IF(I4="a",J4,IF(E4="a",D4,"")))

Mike

"Mike H" wrote:

Maybe

=(IF((I4="a"),J4,IF(E4="a",D4,"")))

Mike

"John Rundle" wrote:

=(IF((I4="a"),J4, " ") or IF((E4="A"),D4," "))

This is my arttempt to construct a formula fill in a table of expenses. I
know that each part of it will work separaely but this returns an answer of
#VALUE!

Can anyone tell me why?