I have two different queries being pulled from SharePoint. Table 1 has a column which references the unique ID from Table 2. The caveat is the unique ID cell can have multiple IDs separated by spaces (3).
Table 1 example:
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Number[/TD]
[TD]Name[/TD]
[TD]Phone Number[/TD]
[TD]Zip Code[/TD]
[TD]Story ID(s)[/TD]
[/TR]
[TR]
[TD]14A[/TD]
[TD]Paul[/TD]
[TD]555-5555[/TD]
[TD]90210[/TD]
[TD]Lighter1[/TD]
[/TR]
[TR]
[TD]93[/TD]
[TD]Kim[/TD]
[TD]777-7777[/TD]
[TD]90210[/TD]
[TD]Lighter2 Goal3a[/TD]
[/TR]
</tbody>[/TABLE]
Table 2 example:
[TABLE="class: grid, width: 510"]
<tbody>[TR]
[TD]Story ID[/TD]
[TD]Text[/TD]
[TD]Cross Check[/TD]
[/TR]
[TR]
[TD]Lighter1[/TD]
[TD]Ability to light a fire[/TD]
[TD]Flag as this story ID is included in 14A[/TD]
[/TR]
[TR]
[TD]Goal3a[/TD]
[TD]Ability to score a goal[/TD]
[TD]Flag as this story ID is included in 93[/TD]
[/TR]
[TR]
[TD]John316[/TD]
[TD]Ability to convert a table[/TD]
[TD]Don't flag as this story ID isn't in table 1[/TD]
[/TR]
</tbody>[/TABLE]
'Cross Check' column is the information I'm hoping to get. I don't have real data yet as this is in the early stages and being discussed. I want to check if it's possible before going down this path.
Table 1 example:
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Number[/TD]
[TD]Name[/TD]
[TD]Phone Number[/TD]
[TD]Zip Code[/TD]
[TD]Story ID(s)[/TD]
[/TR]
[TR]
[TD]14A[/TD]
[TD]Paul[/TD]
[TD]555-5555[/TD]
[TD]90210[/TD]
[TD]Lighter1[/TD]
[/TR]
[TR]
[TD]93[/TD]
[TD]Kim[/TD]
[TD]777-7777[/TD]
[TD]90210[/TD]
[TD]Lighter2 Goal3a[/TD]
[/TR]
</tbody>[/TABLE]
Table 2 example:
[TABLE="class: grid, width: 510"]
<tbody>[TR]
[TD]Story ID[/TD]
[TD]Text[/TD]
[TD]Cross Check[/TD]
[/TR]
[TR]
[TD]Lighter1[/TD]
[TD]Ability to light a fire[/TD]
[TD]Flag as this story ID is included in 14A[/TD]
[/TR]
[TR]
[TD]Goal3a[/TD]
[TD]Ability to score a goal[/TD]
[TD]Flag as this story ID is included in 93[/TD]
[/TR]
[TR]
[TD]John316[/TD]
[TD]Ability to convert a table[/TD]
[TD]Don't flag as this story ID isn't in table 1[/TD]
[/TR]
</tbody>[/TABLE]
'Cross Check' column is the information I'm hoping to get. I don't have real data yet as this is in the early stages and being discussed. I want to check if it's possible before going down this path.