thx @mdevaney
I find this hard to understand. If I set the variable:
Set(
testVar,
LookUp(
'OU Salesperson Lists',
Autonumber = DataCardValue12.Selected.Autonumber,
'OU #'
)
)
testVar shows a "record," and only the column "cr6a2_operatingunitid" has a value in it.
If I go a relationship level further in a different direction than my desired direction and set the variable:
Set(
testVar,
LookUp(
'OU Salesperson Lists',
Autonumber = DataCardValue12.Selected.Autonumber,
'OU #'.'OU Name'
)
)
Then testVar gives me a "text" output of the OU Name (great!).
However, when I go my desired direction and set the variable:
Set(
testVar,
LookUp(
'OU Salesperson Lists',
Autonumber = DataCardValue12.Selected.Autonumber,
'OU #'.'OU Manager'
)
)
testVar gives me a "record," only the entire record is blank (there are no columns).
I don't understand where I am going wrong. When I look at the underlying data for that OU (operating unit), the column 'OU Manager' is definitely populated (with a lookup field, so I would need to go one relationship level deeper yet). Why is LookUp() not pulling result data through the relationship levels?
And yes, for completeness, if I set the variable:
Set(
testVar,
LookUp(
'OU Salesperson Lists',
Autonumber = DataCardValue12.Selected.Autonumber,
'OU #'.'OU Manager'.'Full Name'
)
)
testVar gives the "text" result of "No Value."
I can't see how I can be pulling the wrong relationship level results. Any help troubleshooting would be hugely appreciated!