How do you search partial strings in Qlik Sense URL?
Hi community!
I want to use the URL path to do selections dynamically. This works great: https://<MY_SERVER>/<MY_APP>/sheet/<MY_SHEET>/state/analysis/select/Dim1/[A]
I need to use search by substrings as well (for example "*A*").
These do not work: * Plain: https://<MY_SERVER>/<MY_APP>/sheet/<MY_SHEET>/state/analysis/select/Dim1/[*A*] > this throws error "Invalid parameters" * URL encoded: https://<MY_SERVER>/<MY_APP>/sheet/<MY_SHEET>/state/analysis/select/Dim1/[%2AA%2A] > this throws error "Invalid parameters" * Without brackets: https://<MY_SERVER>/<MY_APP>/sheet/<MY_SHEET>/state/analysis/select/Dim1/*A* > is simply ignored