Convert from cubic feet to cubic meters, and vice versa
' Convert from cubic feet to cubic meters, and vice versa
Function CubicFeetToCubicMeters(ByVal cuFeet As Double) As Double
Return cuFeet * 0.0283
End Function
Function CubicMetersToCubicFeet(ByVal cuMeters As Double) As Double
Return cuMeters / 0.0283
End Function