I want to find out how many rows in the table have valid values such as
ie Depth <> "-99, NULL, BLANK, 0)
ie Invert <> "-99, NULL, BLANK, 0, 0.00)
ie Diameter <> "-99, NULL, BLANK, 0,)
The TestFilter looks promising except the test condtions are If, Else if, Else. I want the test conditions to be IF, IF, IF.
ie currenlty the test filter allows
IF Depth <> "-99, NULL, BLANK, 0)
Else if Invert <> "-99, NULL, BLANK, 0, 0.00)
Else Diameter <> "-99, NULL, BLANK, 0,)
i would like it like
IF Depth <> "-99, NULL, BLANK, 0) -- port these to statscalc
IF Invert <> "-99, NULL, BLANK, 0, 0.00) -- port these to statscalc
IF Diameter <> "-99, NULL, BLANK, 0,) -- port these to statscalc
is there another way im missing ?
Many Thanks
Steve