excel - How to copy cell value only if other two cells matches -
i have excel file containing 2 spreadsheet shown below. want update value comm level in sheet 1 comm level in sheet 2 provided modem id in sheet 1 matches modem id in sheet 2. how automatically in libre office ? can suggest me formula or script work in libre office not have license ms office.
sheet 1 modem id | comm level ----------------------- 70000 | 90 70001 | 90 70004 | 90 70007 | 90 70010 | 90 sheet 2 modem id | comm level ----------------------- 70001 | 80 70002 | 90 70003 | 60 70004 | 90 70009 | 90
thanks
assuming modem id
in a1 on both sheets. in c2 of sheet1 , copied down suit:
=iferror(vlookup(a2,sheet2.a:b,2,0),b2)
looks corresponding value vlookup match exists , if not found defaults existing value iferror.
Comments
Post a Comment