Marking Inventory as Carry Over

dkbollig

New Member
Joined
Aug 6, 2013
Messages
5
So I've been offered a challenge to be able to mark inventory as "carry over" based on how old it is from our sales calendar which is September 1st.

So lets say we order a product and capture its order date on November 18th 2013 I somehow have to add logic that once a date passes Sept 1st 2014 that ordered product is now considered carry over.

I've been thinking some formula that subtracts the days from September 1st to the Order Date but not sure if that's the right direction.

Any ideas?

Thanks!
Derek
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
=if("CurrentDate"-"Orderdate">"#ofDaysOldtobeconsideredCarryOver","Carry Over","")

The above formula with References change to match your data will return "Carry Over" if the # of Days Old has exceeded your Carry Over Criteria it will return a blank until it meets the Carry Over Criteria

The formula could be modified to show #ofDays until Carry Over instead of Blank by replacing ,"") with concatenate("Days Until Carry Over","("CurrentCate"-"OrderDate"-"CarryOverCriteriaInDays")")
 
Upvote 0

Forum statistics

Threads
1,223,981
Messages
6,175,775
Members
452,668
Latest member
mrider123

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