Excel Vlookup Changing location -


i have project need mapping data (male=m female=f) when copying information 1 sheet current sheet. code:

=vlookup('data'!l2,'mapping data'!b2:'mapping data'!c3,2,false) 

however, issue when copy , paste cell bellow !b2 , !c3 change next cell. want stay @ b2 , c3. new excel formulas i'm not sure how work or if possible. thank ahead of time.

when moves b2 , c3 shows

"#n/a"


| | b | c

|1|

|2| field name | code1 | code2

|3| gender | female | f

|3| | male | m

try this, $ anchor...

=vlookup('data'!l2,'mapping data'!$b$2:'mapping data'!$c$3,2,false) 

Comments

Popular posts from this blog

OpenCV OpenCL: Convert Mat to Bitmap in JNI Layer for Android -

android - org.xmlpull.v1.XmlPullParserException: expected: START_TAG {http://schemas.xmlsoap.org/soap/envelope/}Envelope -

python - How to remove the Xframe Options header in django? -