• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Dynamic Named Range

Kinghart

Member
Hello... Little help needed to make this simple formula to work


=IF(C5="","",(VLOOKUP(C5,List,COLUMN(Database!L$3)-7,1)))


my problem is that excel is limiting my named range "list". How to fix it
 
COLUMN(Database!L$3)-7 will always be 5 and so list has to have at least 5 columns or there'll be an error

I realize that will change as you copy it across
 
No. that's not the problem... I've mailed u the original workbook... Pls take a look... Some cells are crazy even though I write the correct formula..
 
Kinghart's list wasn't sorted and so VLookup was returning incorrect values

Changed the formula to:

=IF($C5="","",OFFSET(Database!H$2,MATCH($C5,Database!$D$3:$D$346,0),))

fixed that problem
 
Back
Top