Forum Discussion
JBusque
2 years agoFrequent Visitor
Return a value from one table based on two columns, one with a delimiter
Hello, I have two tables. One is a auto generated call data, the other is a list of outcomes for calls. I need to somehow create a column for the Auto generated Call data that compares both the Sta...
- 2 years ago
JBusque , Please try a new column in call table (First Table)
Maxx(filter(Outcome, Call[Start Time]<= Outcome[Time] && Call[End Time]<= Outcome[Time] && Search(Outcome[Name], call[Names],,0) >0) , Outcome[Outcome])
amitchandak
Super User
2 years agoJBusque , Please try a new column in call table (First Table)
Maxx(filter(Outcome, Call[Start Time]<= Outcome[Time] && Call[End Time]<= Outcome[Time] && Search(Outcome[Name], call[Names],,0) >0) , Outcome[Outcome])
JBusque
2 years agoFrequent Visitor
Yes this worked quite well, Thank you.