This SAS KB article contains the following sections:
The Filter and Rank dialog box in SAS Web Report Studio fails with the No values to filter on have been selected message in the following scenarios:
The No values to filter on have been selected message is displayed when you complete steps similar to the following:
Immediately, the following pop-up message is displayed:
As a result, you cannot save the selected values.
To continue working on your report, click the OK button in the pop-up box. Then, in the Filter and Rank dialog box, click Cancel to exit.
Note that the Isolation option is not affected by this issue. As a result, you can filter a table on those values by completing the following steps:
If the special characters come from a format applied to your data, to circumvent this issue, remove the special character from the format. Change the format where the characters “<” and “>=” occur and substitute them with “less then”, “greater than", or "equal to”.
Here is an example:
Original Format
proc format library = DATASTAR;
value $lrrv1f '1' = "1 bis < 10 "
'2' = "10 bis < 20"
'3' = "20 bis < 30"
'4' = "30 bis < 40"
'5' = "40 bis < 50"
'6' = "50 bis < 60"
'7' = ">= 60"
'9' = "nicht definiert"
;
...
New Format
proc format library = DATASTAR;
value $lrrv1f '1' = "1 bis less then 10 "
'2' = "10 bis less then 20"
'3' = "20 bis less then 30"
'4' = "30 bis less then 40"
'5' = "40 bis less then 50"
'6' = "50 bis less then 60"
'7' = "greater than or equal to 60"
'9' = "nicht definiert"
;
...
A hot fix is available for this issue.
Note: After installing the hot fix for this issue, the Umlauts letters related issue occurs.
A hot fix is planned for this issue. SAS Technical Support will update this section when the hot fix is available.