Forum Discussion

vickyd's avatar
vickyd
Icon for Helper V rankHelper V
8 years ago

CONTAINS or OR condition in URL filters

I have a report to show list of employees. Each employee has a manager, the manager in turn has a manager and so on till the CEO i.e. a typical Org hierarchy. 

 

I want to be able to pass a URL filter with an employee id and then show all employees that report to that employee i.e. everyone below him/her. 

 

For each employee record, I already have fields like L1 Manager, L2 Manager where L1 manager = CEO, L2 is the next level and so on. 

 

So URL filter would be something like  

https://ReportURL?filter=Employee/L0ManagerID eq '123456' OR Employee/L1ManagerID eq '123456' OR Employee/L3ManagerID eq '123456' OR Employee/L4ManagerID eq '123456'

 

OR

 

I can create a column called ManagerIDs which would be a concatenation of L0ManagerID, L1ManagerID, L2ManagerID and so on and then pass a URL like 

https://ReportURL?filter=Employee/ManagerIDs CONTAINS '123456'

 

Looks like neither OR or CONTAINS is supported in URL filters though.

 

If that is correct, is there any other way I can achieve what I'm looking for?

4 Replies