I have a due date column that is a formula derived from down payment date x weeks of lead time. I also have a hard ship date in case sales has made a promise we have to keep. The hard ship column will be empty the majority of the time. I need the week number populated into a column for the earlier of the 2 dates if there are 2 dates and just the week number of the due date column if there is only one date. My formula is not working. Can anybody educate me about why it isn’t working and what I need to do to fix it?
Here’s my formula -
IF(ISBLANK({HARD SHIP}), WEEKNUM({Due Date}), WEEKNUM({HARD SHIP}))