Hi, 
Thank you for the reply. It's very helpful and all is clear.
Still, in my case I need few checkboxes let's say customer, product,country etc... It seems that I have to set all possible combinations between these checkboxes as filters and then for each checkbox set the logic which filter to be shown using conditinal statements(Is there other way?). 
If a matching case is found and I do have "Set View Filter" for it I'd like Method to  end/stop execution of the conditional statements after that matching case and just show the filter? Is it possible?
I'm not sure if I explained it well. So here it's an example:
    Start Conditional Statement    if product
        Start Conditional Statement    if customer
            Set View Filter    CustomerProduct
        End Conditional Statement    endif customer
        Set View Filter        Product
    End Conditional Statement    endif product
If I do the statements this way it seems that I'll always end up with Product filter showing, even if I have a customer? Is there some action I can apply to prevent execution of statements after matching case?
I think I've found it... Stop Processing More Actions