Capturing data...

Kookai

New Member
Joined
May 29, 2011
Messages
32
Hi Guys,

I have 2 Sheets (Request & Report).

In Request Sheet i have Column
A1 - NRS Ref(0001) ,
C1 - Received Date ,
J1 - Reply Date ,
N1 - NRS Status (Compelete,Pending,Under Study,Cancelled,Awaiting Response)

Now, in Report Sheet, i want that if a particular ref is complete, the NRS ref,Received Date and Reply Date will be copied automatically in A2, B2 and C3 of Report sheet.

I want this to apply to every NRS Status.

Is it possible.... im really not good in excel and would really appreciate your help guys.... Thank You,
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
ok !

if we consider NRS ref as a lookup criteria.. then
it would be something like...
In Report sheet :

A2 : =IF(Request!D2="Complete",VLOOKUP(Request!$A$2,Request!$A$2:$C$2,1,0),"")
B2 : =IF(Request!D2="Complete",VLOOKUP(Request!$A$2,Request!$A$2:$C$2,2,0),"")
C2 : =IF(Request!D2="Complete",VLOOKUP(Request!$A$2,Request!$A$2:$C$2,3,0),"")

Only problem with vlookup is it will take first matching row only..
 
Upvote 0

Forum statistics

Threads
1,224,519
Messages
6,179,263
Members
452,902
Latest member
Knuddeluff

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