I'm trying to figure out a working day calculation between multiple days. But I'm running into issues because some fields report null and removing data because not all fields are populated.
Below is an example of some data I have.
- If there is no ship date then I want to use today's date to calculate working days.
- If there is no received date then I want to show 0 or null.
- If there is a received date and ship date I want to know how many working days there are
| Shipment # | Received Date | Ship Date |
| 1 | 1/5/2017 | 5/15/2018 |
| 2 | 7/10/2018 | |
| 3 | 5/6/2017 | 6/23/2018 |
| 4 | | 9/18/2017 |