Just using Not(IsMissing()) should be enough
Names Default To Here(1);
dt = New Table("Untitled",
Add Rows(5),
Compress File When Saved(1),
New Column("Column 1",
Numeric,
"Continuous",
Format("Best", 12),
Set Values([., 2, ., 5, .])
)
);
dt << New Column("Check", Numeric, Nominal, Formula(
!IsMissing(:Column 1)
));
![jthi_0-1697560818073.png jthi_0-1697560818073.png](https://community.jmp.com/t5/image/serverpage/image-id/57727i1ED4FB66E79ADB4E/image-size/medium?v=v2&px=400)
And if you want to have then as characters wrap that with Char()
Char(!Is Missing(:Column 1))
-Jarmo