Forum Discussion
Anonymous
6 years agoNot applicable
Check ID in another table
Hi, I have two tables related with each other with an ID number (many to one). From the one side I want to check in the column of the many table if the ID exists in this table (specific column). ...
parry2k
6 years agoSuper User
Anonymous try this measure
Measure Packed =
IF ( COUNTROWS( ManySideTable ) == BLANK(), "Not packed", "Packed" )
drop ID from parent table and above measure in a table visual and you will have the solution