I am trying to figure out whats wrong with a nested formula I created:
In the image you can see the three sections the formula is broken up into:
- is grouping cells into buckets
- is referencing a separate tab (city density scores) and selecting only if the value is less than or equal the value in that tab
- is performing a lookup also referencing a separate tab, and pulling in that value as long as that condition is met.
There is a unique key linking all three tabs. If all three conditions/sections of the formula are met, the idea is to return the value "Select" and if not, "Don't Select." When I ran this formula in excel I'm getting "Don't Select" for cells that meet all #1,#2,#3 criteria, trying to figure out what I am doing wrong.
This is the formula I created. I feel its a small change that I need to make:
=IF(AND(OR(AM6="1 to 3 Bucket",AM6="4 to 7 Bucket"),$BK6<='City Density Scores'!$H$6), IF((VLOOKUP(BI,'Rank Competition Vetting'!$A$7:$F$182,5,0))<33%,"Select","Don't Select"))
BI
??? – BigBenVLOOKUP(BI,'Rank Competition Vetting'!$A$7:$F$182,5,0)
return? – BigBen