Update date in multiple sheets

EwatchesUSA

New Member
Joined
Apr 12, 2011
Messages
15
Hello everyone, I have workbook with two worksheets, worksheet A has all our inventory and worksheet B we use to add and decrease items we receive and sold, we use formula to thigh the two worksheets together.
My question is we keep track of the date the item was purchased on sheet A, I want be able to enter the date in sheet B and have formula update on to sheet A
the date only if the the date changed to newer date, example item xyz can be showing in sheet B 10 times with different dates, and I want see in sheet A the last date this item came into my store.
Please advise.

Regards Mike
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
You can use a formula like:

=MAX(IF(Sheet2!A1:A10=A1,Sheet2!B1:B10))

confirmed with Ctrl+Shift+Enter, not just Enter. If correctly entered Excel will surround the array formula with curly braces {}.
 
Upvote 0
Thank you for your help, I'm getting N/A, THIS WHAT MY FORMULA LOOKS LIKE
=MAX(IF(Sheet2!A2:A31=Sheet1!A2,Sheet2!B2:B32))
I do have curly on the end but the dates not changing, to the newest date.
 
Upvote 0
The ranges must be the same size or you will get #N/A. You can use eg:

=MAX(IF(Sheet2!A2:A1000=Sheet1!A2,Sheet2!B2:B1000))
 
Upvote 0
Hi, I'm still getting N/A error here is my formula

=MAX(IF('NEW DECREASE PAGE'!B4:B4749=INVENTORY!B4,'NEW DECREASE PAGE'!M4:M4749))

I did use ctr **** enter and still no luck, please advise I need to be able to have the date changes we are doing it manually now.

Regards Mike
 
Upvote 0

Forum statistics

Threads
1,224,583
Messages
6,179,678
Members
452,937
Latest member
Bhg1984

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