Yes, match can only use 1 column
But you don't have to change your named range...
You can use index to use only 1 column of the named range
=MATCH(B4,INDEX(Daily,0,1),0)
The 1 indicates which column of the named range you want to refer to.
It also looks like your named range begins in row 2 because of the offset by 1 row.
So You'll need to Add 1 to the formula
=MATCH(B4,INDEX(Daily,0,1),0)+1
Hope that helps.