LOD?
One way of "including" missing values, is to create categorization column for example "MISSING" and then values are either 0 or 1, for example in your case something like
New Column("RESULTAT_MISSING",
Numeric, "Nominal", Format("Best", 12),
Formula(Is Missing(:RESULTAT)),
)
and then try to deal with that
-Jarmo