Go to Report->Selection Formula->Record and placed:
not({OrderRel.OpenRelease})
That would include the False ones, or if you want to eliminate the False ones, use:
{OrderRel.OpenRelease}
If the above gives an error then try:
{OrderRel.OpenRelease} = true
-k