Forum Discussion
VK7
2 years agoFrequent Visitor
Find the value in other table
Hi, Need to achieve column C in table 1, By considering the logic if Table 1, Column B value is in Table 2 Column B then True else False.
- 2 years ago
Hi VK7,
One of the options is such a calculated column:
In plain text for convenience:
Column C = VAR stringToCheck = CONCATENATEX ( Table2, [Column B], "; " ) RETURN CONTAINSSTRING ( stringToCheck, [Column B] )Best Regards,
Alexander
barritown
2 years agoSolution Sage
Hi VK7,
One of the options is such a calculated column:
In plain text for convenience:
Column C =
VAR stringToCheck = CONCATENATEX ( Table2, [Column B], "; " )
RETURN CONTAINSSTRING ( stringToCheck, [Column B] )
Best Regards,
Alexander