PO.PVT.Rho.Wat.Stn
Description
Water density at standard conditions, [lb/ft3].
Syntax
=PO.PVT.Rho.Wat.Stn()SI Unit Version
Lambda Name
PO.PVT.Rho.Wat.Stn.SIFormula
=LAMBDA(LET(
result, PO.PVT.Rho.Wat.Stn(),
PO.UnitConverter(result, "lb/ft3", "kg/m3")))How to save as a reusable Excel function
LAMBDA is a built-in Excel feature (Microsoft 365) that lets you create custom functions without VBA. The formula above works as-is when pasted into a cell.
To save a LAMBDA as a reusable named function:
- Go to Formulas → Name Manager → New
- Enter a name, e.g.
PO.PVT.Rho.Wat.Stn.SI - In Refers to, paste the LAMBDA formula without the trailing invocation
(...) - Click OK
Now use =PO.PVT.Rho.Wat.Stn.SI(...) anywhere in your workbook.