Forum Discussion
Anonymous
4 years agoNot applicable
New Column Lookupvalue with a filter on another Tab
Hi together, I have to check if in the table "data_Current" the email is matching with an email in the table "users" and it should only match when the User in the table "users" does have an model ...
vojtechsima
Super User
4 years agoHi,
Anonymous
I found a few inconveniences in your sample data:
If you wanna relate the tables using "user ID", [email protected] cannot Return True, also you have duplicity in Devices, meaning the Lookup can't tell which row should be assigned to. Also, you have a typo in [email protected], his device is "Andorid", not "Android", thus it can't return TRUE.
If I delete duplicity and ignore Test10, here is my solution:
Check =
var Model_Check = LOOKUPVALUE(Devices[Model],Devices[User-ID],Current_Data[UserID])
var UserID = RELATED(Users[USER-ID])
RETURN IF(Model_Check="Android" || Model_Check="IOS" && NOT(ISBLANK(UserID)), "Yes", "No")
Anonymous
4 years agoNot applicable
Yeah, that is the issue, but i cannot not delete the duplicated data, however, is there another possible solution to show the expected outcoming ?