Forum Discussion

Ram_DCT's avatar
Ram_DCT
Helper II
5 years ago
Solved

LOOKUPVALUE function with multiple values into RESULT TABLE

Hi Team,

 

I need a quick help. I have two tables with one has unique values and another has multiple values.

 

I need to to repeat my LOOKUPVALUE for all the duplicates reocrds as it is going to repeat same value only. Currently it is giving me one value for each record without making any relationship between them.

Here is table where I weant to pull all the respective Project Names:

TableA:

ProjectID
101
101
101
102
103
103
104

 

TableB:

ProjectIdProjectName
101P1
102P2
103P3
104P4

 

Expected Output [Without making any active relatiosnhip between these two tables]

ProjectIDProjectName
101P1
101P1
101P1
102P2
103P3
103P3
104P4

 

What I am getting using LOOKUPVALUE is:

ProjectIDProjectName
101P1
101 
101 
102P2
103P3
103 
104P4

Basically, it is not reapeting the output for each duplicate value - ideally, it should wokr very similar to Vlookup in excel.

 

Please help

 

Thanks,

Ram