A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hello. Since your gestational age is already in a 00w 0d text format, the main task is converting that into total days so Excel can compare it to your scan thresholds.
I had a test with this formula:
=LET( txt, G12, w, VALUE(LEFT(txt, FIND("w", txt)-1)), d, VALUE(MID(txt, FIND(" ", txt)+1, FIND("d", txt)-FIND(" ", txt)-1)), totalDays, w*7 + d, IF(totalDays <= 91, "Nuchal", IF(totalDays <= 126, "Dating", IF(totalDays <= 154, "Anomaly", "Growth") ) ) )
You just need to paste the formula on the cell next to the Gest Age, and drag down. Let me know if it worked for you.