I would like to make visible only these polygons, which are selected right now.
I tried to go with this hint:
Displaying only selected features on map in QGIS
but when in my expression I applied:
is_selected('Preferred cell radius')
I got an error:
Cannot convert to feature
I tried to solve it by looking at this issue:
QGIS expression "get_feature" will not evaluate feature, when called within "is_selected"
by adding up three columns from my data attribute table:
is_selected("Preferred cell radius", get_feature("Name", "descriptio", "new_name"))
but in this case, I have another error:
Eval error: Column 'Preferred cell radius' not found
There is also another option in the Atlas features
QGIS Atlas: Only Show Selected Feature
but it looks like I have to add the certain feature ID
How can I make only these items visible, which are already selected?
From the answer below I have situation soch as this:
I have selected an object by the attribute table. Now instead of the style defined with is_selected() I have the selection color set in the project. How to apply the individual style for this selection?



is_selected(). If you selected your features using an expression, use that expression as a filter in the rule and the features will keep whatever symbology you apply to the rule (rather than using the expression to make a selection). – Matt Apr 06 '22 at 15:56