Due to production and shipping issues my job has created a report that has the customer's need by date and if a product has been completed or not. If an order is complete we need to determine when it will ship out and arrive to the customer. We have a set shipping schedule and orders get shipped on the truck right before the need by date. For example our truck leaves on Monday and Friday every week so if an order is complete and the need by date is on a Wednesday it will ship on Monday so any order with a need by date from Tuesday to Friday gets shipped the Monday before and any need by date from Saturday to Monday gets shipped on Friday. Now my questions is, is there a way to have a date range yield it's shipping date? Example when I'm writing this it's 5/11/2022 so if I have completed orders with need by dates of 5/12 and 5/15 all of which should be on the 5/13 truck could I use a formula to fill in the shipping date for those need by dates? We've been doing it manually and although determining the dates isn't difficult it's time consuming when each report has over 3000 lines and there is a report for each customer. If it's not possible then we won't have a choice but I would like to hope so. Please help.
Excel formula to determine shipping date
231 Views Asked by Esme.Ivy At
1
There are 1 best solutions below
Related Questions in EXCEL
- Power Query / M Code, extract a list of tables into one main table, some column headers same but some different and in different order (and in row 2)
- Is there a way to validate the cell format (from excel) to fetch the symbol from it (in Java)?
- Excel - Visual Basic, macro with autofill "1"
- Getting Run-time error '13': Type Mismatch using .Find
- Getting website metadata (Excel VBA/Python)
- Excel Code Editor doesn't work (blank window)
- How to find out how many of each 2, 3 and 4 required to fit in 100 using excel?
- How would I apply a rather complex summation formula like this in Excel?
- Removing a Button from Customized Excel Ribbon
- Excel - Update Item Description Based on Accessories Ordered with It
- select duplicates from data based on another column
- How to use VBA to bold just some text
- VBA Code to filter and get values from csv to excel worksheet
- Look up max alpha numeric value
- Azure Batch for Excel VBA
Related Questions in EXCEL-FORMULA
- How would I apply a rather complex summation formula like this in Excel?
- Excel - Update Item Description Based on Accessories Ordered with It
- select duplicates from data based on another column
- Look up max alpha numeric value
- Assistance with sum for multiple separate rows using multiple criteria please
- Excel Index+ match Returns duplicate value
- requesting excel formula to compare columns but going in order and skipping blanks
- Concatenate and dropping leading zeros
- Math's & Excel formula to calculate the interest rate from the EMI and principal amount?
- Excel - How get everything to the left of the second to last instance of a character
- Calendar is not Highlighting Accurate Time
- How to search for size in the list and set costing based on it?
- Is there a way to set a cells value based on the value this cell held at a certain time, even when the cell value changes over time?
- How to sum monthly data in Excel into quarterly
- Can I use Sumproduct arrays and check two separate criteria counting TRUE statements?
Related Questions in EXCEL-DATES
- How to group multi-year expenses by month and get moving average?
- Excel date convertion in JavaScript gives one day less
- How do I find certain days of a month between two dates in Excel using formula?
- Excel does strange things with my date data
- Excel Formula - Next Wednesday UNLESS Input is Tuesday
- Filter Count & Sum Based on Given Criterias
- "Handling Format Inconsistencies in Time Variable When Importing Data in R"
- Identify if a date range includes Weekends and/or Holidays in Excel
- I cannot format "November 9, 2000" date in EXCEL to "09.11.2000"
- Add date to multiple cells based off another column in Excel
- Excel: Formatting text into a recognisable date
- Ensure Excel (Persian) date is valid date with specific format
- Is there any function in excel to find day time between two date and time in Excel?
- Excel 365 functions LEN, LEFT and RIGHT, and FIND not yielding correct results
- How to make flow run successfully when updating blank/empty "Date" column from Excel Table to Sharepoint List "Date" column with our error?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The third column is just to show that the ship dates are on the correct day. It looks different because the dates are Australian (DD/MM/YYYY) rather than American (MM/DD/YYYY), but that shouldn't matter for the function to work.
The function in the Ship Date column:
Need By Date (including header) = A7:A20 Ship Date (including header) = B7:B20
Explanation
Breakdown