Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Table that shows answers for question of a people:
_person.id_ | question_ | answer_ | gender |
1 | gender? | male | male |
1 | age? | 18 | male |
1 | married? | no | male |
2 | gender? | female | female |
2 | age? | 36 | female |
2 | married? | yes | female |
So, from 1 question we can now know the gender, but I need to see this person's gender in each row related to this person by his/her id. What's the formula for that? Thanks in advance!
Solved! Go to Solution.
Hi @Anonymous ,
Here you go :
Kind regards,
Rohit
Please mark this answer as the solution if it resolves your issue.
Appreciate your kudos! 🙂
Hi, @Anonymous
You can try the following methods.
Measure:
Measure =
CALCULATE (
MAX ( 'Table'[_answer] ),
FILTER (
ALL ( 'Table' ),
[_person.id] = SELECTEDVALUE ( 'Table'[_person.id] )
&& [_question] = "gender?"
)
)
Column:
gender =
CALCULATE (
MAX ( 'Table'[_answer] ),
FILTER (
'Table',
[_person.id] = EARLIER ( 'Table'[_person.id] )
&& [_question] = "gender?"
)
)
Does it match the output you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Anonymous
You can try the following methods.
Measure:
Measure =
CALCULATE (
MAX ( 'Table'[_answer] ),
FILTER (
ALL ( 'Table' ),
[_person.id] = SELECTEDVALUE ( 'Table'[_person.id] )
&& [_question] = "gender?"
)
)
Column:
gender =
CALCULATE (
MAX ( 'Table'[_answer] ),
FILTER (
'Table',
[_person.id] = EARLIER ( 'Table'[_person.id] )
&& [_question] = "gender?"
)
)
Does it match the output you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
You can do this using Power Query.
In the first step, please add a conditional column as shown below :
You will see a new column added with gender values and nulls.
In the next step, click on the _gender column, go to "Transform" --> "Fill" --> ''Down"
This will give you the result as expected
Kind regards,
Rohit
Please mark this answer as the solution if it resolves your issue.
Appreciate your kudos! 🙂
I can't use edit query for this table, I need a dax code
Hi @Anonymous ,
Here you go :
Kind regards,
Rohit
Please mark this answer as the solution if it resolves your issue.
Appreciate your kudos! 🙂
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
15 | |
11 | |
11 | |
10 | |
10 |
User | Count |
---|---|
19 | |
14 | |
13 | |
11 | |
8 |