Calculate estimated delivery date by gestational age at date of delivery

maggieph

New Member
Joined
Jul 26, 2022
Messages
2
Office Version
  1. 2021
Platform
  1. MacOS
I have a spreadsheet with date of delivery and gestational age at delivery and I want to calculate the estimated delivery date based on those two inputs. e.g. date of delivery 23/06/2019, gestational age at delivery 36W 6D, ?? estimated delivery date
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
I am confused. If you have the date of delivery as an input, how are you determining estimated delivery date? Aren't they the same thing?

Please show a couple of examples.
 
Upvote 0
So the date of delivery is the date when delivery actually happened and this might occur at any point in the pregnancy. The estimated delivery date is calculated at the beginning of the pregnancy. It is a future date when there are 40 completed weeks of pregnancy.

In my data sheet I have
The delivery date 23/06/2019
Gestational age at delivery 36W 6D
I want to calculate the estimated delivery date when the woman would be 40 weeks 23/06/2019 plus 22 days in this case
 
Upvote 0
So you want to take the actual delivery date, back it up according to gestational age, then go forward again by 40 weeks to get after-the-fact estimated delivery date?

(Dates in U.S. format)

$scratch.xlsm
ABC
1Delivery DateGestational AgeEstimated Delivery Date
26/23/201936W 6D7/15/2019
delivery
Cell Formulas
RangeFormula
C2C2=A2+7*40-(7*LEFT(B2,FIND("W",B2)-1)+SUBSTITUTE(SUBSTITUTE(B2,LEFT(B2,FIND("W",B2)-1)&"W ",""),"D",""))
 
Upvote 0
Slightly shorter version taking advantage of LET function, which I believe is supported in 2021.

Excel Formula:
=LET(Weeks,LEFT(B2,FIND("W",B2)-1),A2+7*40-(7*Weeks+SUBSTITUTE(SUBSTITUTE(B2,Weeks&"W ",""),"D","")))
 
Upvote 0

Forum statistics

Threads
1,215,336
Messages
6,124,334
Members
449,155
Latest member
ravioli44

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