Forum Discussion
darshp1
8 years agoRegular Visitor
Lookupvlaue randomly returns blanks
I have a dataset with Names of volunteers and each one is given a unique ID number. In another table, I have some contacts and in that table, there is a column of with the Volunteer ID of the volunt...
Anonymous
8 years agoNot applicable
All Custom Columns fall prey to the context of the current row. Have you set up a table relationship such that certain rows may have a filter context that causes your lookup to only see a portion of the table where the record you expect doesn't exist?
For example, you might have a date link and certain rows occur during a time period that you second table is out of the date range for the record you seek, or the person is considered "terminated" after that point in time.
Do you get different results by using:
Assigned Volunteer = Var thisRecord = [Primary Volunteer ID]
RETURN
CALCULATE( LOOKUPVALUE( Volunteers[First Name], Volunteers[Volunteer ID], thisRecord ), ALL(Volunteers) )