Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
dunnalahk123
Creator III
Creator III

Match & WlidMatch

Hi all,

 

I have two Dimension fields  like

Task Name and SubTask Name 

 

for that i am writing like below

Wildmatch (GetFieldSelections([%Field_name],',',200) , '*Task Name*') and GetSelectedCount([%Field_name]) >0

Wildmatch (GetFieldSelections([%Field_name],',',200) , '*SubTask Name*') and GetSelectedCount([%Field_name]) >0

 

i am doing in char conditional properties

 

but when i select subtask name i am getting both Task and SubTask Name which it should not be.

 

Labels (1)
11 Replies
dunnalahk123
Creator III
Creator III
Author

Thank You Sunny it works
dunnalahk123
Creator III
Creator III
Author

Hi Sunny,

Regarding same post i have one quick Question.

Could You Please help me

as per above statement it works fine when users select TASK Name i am getting TASK Information and when they select Subtask i am Getting Subtask Information works everything fine.


but by default i need to keep Geography view for that i wrote below
it works fine, but problem is if i select like TASK Code i should get only TASK CODE and geography should go . but geo is staying there and then Task Code is getting.



wildmatch (GetFieldSelections([%Field_name],',',200) , '*Geography*') and GetSelectedCount([%Field_name]) >0

or match (GetFieldSelections([%Field_name],',',100) , '') and GetSelectedCount([%Field_name]) =0


or (wildmatch (GetFieldSelections([%Dimension_name],',',200) , '*Geography*') and GetSelectedCount([%Dimension_name]) >0)

or match (GetFieldSelections([%Dimension_name],',',100) , '') and GetSelectedCount([%Dimension_name]) =0


or (wildmatch (GetFieldSelections([%Dimension_name1],',',200) , '*Geography*') and GetSelectedCount([%Dimension_name1]) >0)


or match (GetFieldSelections([%Field_name] OR [%Dimension_name] OR [%Dimension_name1],',',100) , '') and GetSelectedCount([%Field_name] OR [%Dimension_name] OR [%Dimension_name1]) =0


PLEASE HELP ME HERE