Excel formula: output values based on matched data -
i have range of dates column a, , number of selected dates column c. logic "if cell of contains same value c, output same row field of b d, starting @ d1 , contining downward."
what best syntax accomplish this?
i have tried use if(vlookup()) this, don't understand how works.
assuming have this
a |b |c |d 01/01/2015|hello|01/01/2015|
then formula in d should vlookup(c1,a:b,2,false)
this means 'find value c1 in column (the first of 2 columns a:b) , give me value second column (b)'. note use of false
means looking exact match.
you can enter following formula in d1 , drag down far need ...
=vlookup(c1,a:b,2,false)
Comments
Post a Comment