Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Experts,
I have two Filters,
1) Product
2) Price Segment.
Based on the Product filter value selection, Price Segment Filter values should be visible. Below is the mapping for your reference.
Anyone, Please help!!
Thank you!!
Hi, you can try to edit 'Price Segment' filters field to:
=IF(GetFieldSelections(PRODUCT)='TV', IF(WildMatch([PRICE SEGMENT],'*TV*','*ALL*'), [PRICE SEGMENT]),
IF(GetFieldSelections(PRODUCT)='FAN', IF(WildMatch([PRICE SEGMENT],'*FAN*','*ALL*'), [PRICE SEGMENT]),
IF(GetFieldSelections(PRODUCT)='GRINDER', IF(WildMatch([PRICE SEGMENT],'*GRINDER*','*ALL*'), [PRICE SEGMENT]),
[PRICE SEGMENT])))
Hi, you can try to edit 'Price Segment' filters field to:
=IF(GetFieldSelections(PRODUCT)='TV', IF(WildMatch([PRICE SEGMENT],'*TV*','*ALL*'), [PRICE SEGMENT]),
IF(GetFieldSelections(PRODUCT)='FAN', IF(WildMatch([PRICE SEGMENT],'*FAN*','*ALL*'), [PRICE SEGMENT]),
IF(GetFieldSelections(PRODUCT)='GRINDER', IF(WildMatch([PRICE SEGMENT],'*GRINDER*','*ALL*'), [PRICE SEGMENT]),
[PRICE SEGMENT])))