Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
PFA
I am using combination of listbox and textbox for fulfilling my requirement.Can you pleasesuggest how should i align in perfectly so that that will be visible as a single object.
Below are the problems for the filter.
Thanks
buddy , you are complicating things unnecessarily
Just add another inline table that links to the ActiveInactiveFlag field, as below and Create a Listbox with the field
"DisplayFlag"
AddressBook:
LOAD
Pick(match(Search_Type,'C','CP','CX'),'Active','Active','Inactive') as ActiveInactiveFlag
// if(Search_Type='C','Active',if(Search_Type='CP','Active',if(Search_Type='CX','InActive',if(Search_Type<>'C','ALL',if(Search_Type<>'CP','ALL',if(Search_Type<>'CX','ALL',
// if(Search_Type='C','ALL',if(Search_Type='CP','ALL',if(Search_Type='CX','ALL',)))))))))
// as ActiveInactiveFlag,
FROM
(qvd);
load * inline [
ActiveInactiveFlag , DisplayFlag
Active,ALL
Inactive,ALL
Active,Active
Inactive,Inactive
];
for formatting the listbox see below
Hi,