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.


excel


you can enter following formula in d1 , drag down far need ...

=vlookup(c1,a:b,2,false) 

Comments

Popular posts from this blog

javascript - Using jquery append to add option values into a select element not working -

Android soft keyboard reverts to default keyboard on orientation change -

jquery - javascript onscroll fade same class but with different div -