Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
sanjujeeboy
Creator
Creator

HOw to achieve the filter in front end

Hi

I have two different fields from 2 different tables.

Traffic DestTraffic Arriv
EPGEPG
PPGCRT
TVPPG

 

i want to create a filter in Front end named Traffic(as below) such that when i click on EPG in traffic, it should select EPG from Traffic Dest and EPG from traffic Arriv

Traffic
EPG
PPG

 

How to acheive this?

 

 

Labels (3)
1 Solution

Accepted Solutions
Lisa_P
Employee
Employee

When you load this data, you can create a new field to indicate Traffic Type:}
Table1:
Load ....

   "Traffic Dest" as Traffic,

   'Dest' as [Traffic Type]

...

then in Table2:

Table2:

Load ....

   "Traffic Arriv" as Traffic,

   'Arriv' as [Traffic Type]

...

View solution in original post

1 Reply
Lisa_P
Employee
Employee

When you load this data, you can create a new field to indicate Traffic Type:}
Table1:
Load ....

   "Traffic Dest" as Traffic,

   'Dest' as [Traffic Type]

...

then in Table2:

Table2:

Load ....

   "Traffic Arriv" as Traffic,

   'Arriv' as [Traffic Type]

...