Filter or Index function to match and bring the values

ChetanPuri

Board Regular
Joined
Sep 5, 2018
Messages
97
Office Version
  1. 365
Platform
  1. Windows
Good Morning Excel Gurus,
I have an excel question, I have the below value in sheet 1 and on Sheet 2 I want to match the values of column A and then want to build the formula in sheet 2 to those values in B to F from sheet1, just wondering is there a formula which can do all at the same time

2024-10 Detail_report.xlsm
ABCDEF
1Service NumberGLWKIDJobCost CentreCost Type
2N0017299R5282971052
3N8713661R4092971040
4N0017295R4094971040
5N0016175R4093971040
GL Codes


Book2
ABCDEF
1Service NumberGLWKIDJobCost CentreCost Type
2N0017299R52
3N8713661RNo Results40
4N0017295RNo Results40
5N0016175RNo Results40
Sheet1
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
VLOOKUP can help.
FOR EX IN B2:
Code:
=IFERROR(VLOOKUP($A2,'GL codes'!$A$2:$F$5,COLUMNS($A:B),0),"")
Wrag down and accross
 
Upvote 0

Forum statistics

Threads
1,224,823
Messages
6,181,181
Members
453,022
Latest member
Mohamed Magdi Tawfiq Emam

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top