@Vani1493 wrote:
Hi
when i did OR for race (one race) got od as >999.999...can anyone help me why i got this value
You need to describe in much more detail what you did. Note that the OR operator is a BOOLEAN operator. The only values it can return are 0 (FALSE) and 1 (TRUE). So I assume you did some type of WHERE clause that might have had an OR operator in it and one of the values of one of the variables in the resulting dataset had a value that was 1000 or higher.
Or perhaps your variable has a FORMAT attached to it so that some other value is displayed as the text ">999.999". That is what format are for, to control how values are displayed as TEXT in reports.