Actually I want to match a name (B4) with a name (input!A4:A365) if the name matches and (H4:H365) in the same row = Paid - then add 1 to a sum product formula. Sorry for being so vague.
Main Topics
Browse All TopicsI need to look up a value - so basically - if (B4 = Input!$A4:$A365) then if ($H4:$H365 = Paid) both are true add some value to some other value.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Hello Mark, isn't that almost the same as the question you asked here?
Try
=SUMPRODUCT(($B4=S
regards, barry
As you may have discovered the calcs sheet evaluates the input sheet to essentially true or false. If its true (1) if its a weekend (2) if its both (3). I need to add one more condition if its paid (1.5), if its (2.5), (3.5) will not matter. Conditional formatting on the reports page will display (PV) for a paid vacation.
Hello Mark,
It took me a little while but I think I understand what you require now.
I did the following:
I added another named range "Paid" in input sheet defined as =Input!$E$4:$E$587
Now the formula in C4 copied across and down can be
=SUMPRODUCT(($B4=SNames)
T
So on the Report sheet C4 copied across and down is
=IF(Calcs!C4=1,"V",IF(Ca
You might want to adjust conditional formatting to highlight both "V" and "PV".......
Notes:
I only applied this to January, you can extend to the other months if it works OK
I'm not sure why you use SunTo range in the SUMPRODUCT formula, should that perhaps be STo? I can't even work out what the SunTo column is meant to do, can you explain?
see attached
regards, barry
Business Accounts
Answer for Membership
by: saurabh726Posted on 2009-01-22 at 15:41:50ID: 23444977
You can do this...
=lookup(2,1/((Input !$A4:$A365 =B4)*(Inpu t!$H4:$H36 5="Paid")) ,Input!$i4 :$i365)
I assumed you wanted to pick column i values...
Saurabh...