Hello,
not sure what I'm doing wrong,
Here is the requirement, (I'm trying to copmare sales between periods of 2 years)-
--Column H--
Find Client from Column K in Column C, If the client is found, results ,
(SALES in column M - Sales in column E) -- for the client.
I tried to use =LOOKUP(K3,$C$3:$C$206,$E$3:$E$206) to only get the value of sales (without even the formula), but the results are coming wrong.
Any help is appreciated.
HI Mathew,
=INDEX(E:E,MATCH(K3,C:C,0))
this works great, how do you add the formula, to get return as
difference, (SALES in column M - Sales in column E)
thanks,
Patrick Matthews
Try this:
=M3-INDEX(E:E,MATCH(K3,C:C,0))
That will return a #N/A error if K3 has no match in Col C. If you want <Sales in Col E> treated as zero if there is no match:
=M3-IFERROR(INDEX(E:E,MATCH(K3,C:C,0)),0)
Patrick
W.E.B
ASKER
Perfect,
I will be using both for different reports,
thanks.
=INDEX(E:E,MATCH(K3,C:C,0)
this works great, how do you add the formula, to get return as
difference, (SALES in column M - Sales in column E)
thanks,