A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hi,
This can be solved without writing a calculated field formula in the PowerPivot (though I would prefer the calculated formula route).
In the PowerPivot window (the Data Model), establish a relationship from the Last column of table1 (named Participants) to the Last column in the second table (named details). Once that is done, write a calculated column formula in the Participants table to bring over Gender from the Details table
=RELATED(details[Gender])
Give this column an appropriate title
Write another calculated column formula in the Participants table to bring over Age from the Details table
=RELATED(details[Age])
Give this column an appropriate title
Now build you table from the Participants Table.
Hope this helps.