Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
the below condition is not working.Please suggest
Pick(match(Search_Type,'C','CP','CX','C','CP','CX',''),'Active','Active','Inactive','All','All','All','All') as ActiveInactiveFlag,
Try
Pick(Wildmatch(Search_Type,'C','CP','CX','C','CP','CX',''),'Active','Active','Inactive','All','All','All','All') as ActiveInactiveFlag,
What is this indicated in your match() -- ''
For all condition need to values for all flags c cp cx and blanks
for active value need to show value for flag c, cp and
for inactive need to show value for flag cx
plz suggest
Try this way
Pick(WildMatch(if(len(trim(Search_Type))=0,'0',Search_Type), 'C','CP','CX','C','CP','CX','0'),'Active','Active','Inactive','All','All','All','All') as ActiveInactiveFlag
Hi Kishor,
May be like this:
If(wildmatch(Search_Type,'C','CP'),'Active',
If(wildmatch(Search_Type,'CX'),'Inactive','All')) as ActiveInactiveFlag,
Thanks,
Arvind Patil
Hi Arvind,
For All, I nned to show the value for c,cp,cx and blank
Hi all ,
For Option all need to show values for c cp cx and blanks
for option active value for c, cp need to display and
and for option inactive value for cx need to show in list box.
Please suggest.
PFA.
Your conditions are not mutually exclusives, i.e they overlap. If first condition is true for say 'c' to be 'Active', it would never be true for 'All'. Here you could follow Generic keys that would require multiple loads for Search_Type data.
Hi,
Please find the attached file.