Automatically populating data in two field based on data that is entered in a third

MG User

New Member
Joined
Oct 17, 2017
Messages
2
Hi

I have a spreadsheet with two worksheets, on the first I have a list of applications with two dates, the date an application was made and the date it was responded to e.g.

[TABLE="width: 500"]
<tbody>[TR]
[TD]Application no[/TD]
[TD]Date made[/TD]
[TD]Date responded to[/TD]
[/TR]
[TR]
[TD]App-001[/TD]
[TD]01/09/2017[/TD]
[TD]05/09/2017[/TD]
[/TR]
[TR]
[TD]App-002[/TD]
[TD]04/09/2017[/TD]
[TD]15/09/2017[/TD]
[/TR]
[TR]
[TD]App-003[/TD]
[TD]01/10/2017[/TD]
[TD]10/10/2017[/TD]
[/TR]
</tbody>[/TABLE]

On the second worksheet there are a number (approx 10) other columns that include the three above.

My question is, on the second worksheet I add the application number by hand but then, based on the data I entered, I want the start date and responded date to auto-populate (and to update automatically if the first worksheet is changed). Is there a way of doing this in Excel? Ideally without macros as they are a bit out of my comfort zone.

Thanks for your help
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
Welcome to the MrExcel board!

Sounds like you could use the VLOOKUP function.


Book1
ABC
1Application noDate madeDate responded to
2App-0011/09/20175/09/2017
3App-0024/09/201715/09/2017
4App-0031/10/201710/10/2017
Sheet1




Book1
ABCDEF
1Application noDate madeDate responded to
2App-0024/09/201715/09/2017
3App-0011/09/20175/09/2017
Sheet2
Cell Formulas
RangeFormula
D2=VLOOKUP(A2,Sheet1!A$2:B$10,2,0)
F2=VLOOKUP(A2,Sheet1!A$2:C$10,3,0)
 
Upvote 0

Forum statistics

Threads
1,223,911
Messages
6,175,326
Members
452,635
Latest member
laura12345

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