Discussion board where members can learn more about Qlik Sense App Development and Usage.
I want to select only specified values in my field
As example
Code
USFYKAU8I
USIKSAU9U
USKJ1SHSW
I want only codes which start with US and sixth letter should be A.
I tried this =If(WildMatch(Code,'US***A***'), Code)
but its giving all fields which has U,S,A in the code and i need only sixth letter A
#expressions #logi
Use the ? wildcard which indicates a single character.
=If(WildMatch(Code,'US???A???'), Code)
-Rob
http://www.easyqlik.com
http://masterssummit.com
http://qlikviewcookbook.com
Use the ? wildcard which indicates a single character.
=If(WildMatch(Code,'US???A???'), Code)
-Rob
http://www.easyqlik.com
http://masterssummit.com
http://qlikviewcookbook.com
That works, Thanks