Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Team,
i have one question we have different filters like BU ,BRAND,YEAR.,
WE HAVE FILED LIKE CI,EH,SA IN BU LISTBOX AND BRAND= ESSENTAILE AND SO ON IN THE BRAND LIST BOX AND YEAR=201501,201502,201503.
if the user select BU=CI AND BRAND =ESSENTIAE AN DYEAR=201501,201502,03 THE BU=CI SHOULD BE CHANGE FROM CI TO EH
CAN ANY ONE HELPME IN WRITING THIS EXPRESSION.
This is very urgent can anyone helpme out
As I understand this as you need to override the selection on the BU listbox, when given combo(BU=CI, BRAND = ESSENTIAE and DYEAR=201501,201502, 201503) is selected?
You can take use of Select in Field trigger to override the selection.
Yes if the user selects the BU=CI AND BRAND=ESSENTIALE AND YEAR>=2015 THE BU Should be changed from CI TO EH.Can you please help me in this
Hi,Angad
Can you please help me in writing this condition to override this and hel p me out from this
THNXS
Go to Field event triggers under documnent properties, choose select in field and give your criteria. Hope it helps you or post your app here, I will do that for you.
@Hi naveen please find the below image and i want like this in my report
HI Naveen can you please help me in this
Hello Rao,
Please follow below steps to achieve this.
>> Go to Document Settings-> Triggers-> Field Event Triggers
>> Create onSelect Trigger for :
>> BU
>> BRAND
>> DYear
>> Choose 'Select in Field' trigger and Write BU as the Field and in Search String write:
=if(GetFieldSelections(BU)&'|'& GetFieldSelections(BRAND)&'|'& GetFieldSelections(DYear) = 'CI|ESSENTIAE|201501,201502, 201503','EH',BU)
Hope this is helpful or correct
Thanks,
Singh
THNX and can i write this exp in my list box for BU ALSO
!Hi,
You can try the attached solution, but here selection sequence matters.