Remember that JMP is not Excel. Every value in a column will follow the same format, so you can't have a running total at the bottom of your column. For your situation, you could use table variables. Try setting this as a table script:
dt = Current Data Table();
For( i = 1, i <= N Col( dt ), i++,
dt << Set Table Variable( (Column( dt, i ) << Get Name) || "OK", N Items( dt << Get Rows Where( Column( dt, i )[Row()] == "OK" ) ) )
);
It will have to be run to be up to date, of course, but it will keep your totals visible.