Forum Discussion
New Column based on values from a different table
- 6 years ago
Hi Anonymous ,
If the postcode column has unique vaule in the table B, the lookupvalue should work fine as following calculate column
Region = LOOKUPVALUE('Table B'[regions],'Table B'[postcode],[postcode])If one postcode has multi region, you can give me the expected result based on my sample data.
BTW, pbix as attached.
Best regards,
Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi,
You will need to join the two tables using postcode field and use below dax to create a calculated column in Table A to get the region field from Table B.
Region = RELATED( Table B[Region] )
Thanks.
Tried it, but I am getting an error saying that the region field is not recognised as there is no relationship between the two tables, even thoug hI created the relationship already.
Is there anything iam missing?
- Anonymous6 years agoNot applicable
Hi,
Can you share your report pbix?
Thanks.