Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

Retrieve Multiple Columns From Another Table

Hello Power BI community,

I hope everyone doing well. Currently I am working on a table which I need to add couple of columns from another table. I managed to retrieve one column based on filter context however I would like to learn if there is a way to retrieve multiple columns at the same time. Thanks to this community I found following DAX code which retrieves one column based on one or multiple filter context. The code below return students age, but I would like to retrieve grades, parent name etc. at the same time. 

 

Student Age =
CALCULATE (
FIRSTNONBLANK ('Student[Age], 1),
FILTER (
'Student',
'School[Student Number] = 'Student'[ID]
)
)

4 Replies