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.
I have a dataset with names and ages. I need to show three age groups: Under 18, 18-64, 65 and above. Can someone give me some pointers for setting this up? It seems like it should be relatively simple but none of the things I've tried work. I tried creating a conditional column but it won't work in direct query mode. I also tried a DAX formula but it kept giving me an error.
AgeGroups = IF(FamilyMember[Age] < 18, "1) Under 18",If (FamilyMember[Age] <=17 and FamilyMember[Age] >=65),"2)18 -65", If (FamilyMember[Age] >= 65,"3) Over 65",))
Solved! Go to Solution.
Hi @achristopherson ,
You can create a column:
Column =
SWITCH(
TRUE(),
FamilyMember[Age] < 18, "1) Under 18",
FamilyMember[Age] >= 18 && FamilyMember[Age] < 65, "2)18 -65",
"3) Over 65"
)
Best regards,
Lionel Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @achristopherson ,
You can create a column:
Column =
SWITCH(
TRUE(),
FamilyMember[Age] < 18, "1) Under 18",
FamilyMember[Age] >= 18 && FamilyMember[Age] < 65, "2)18 -65",
"3) Over 65"
)
Best regards,
Lionel Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Try:
AgeGroups =
SWITCH(TRUE(),
FamilyMember[Age] < 18, "1) Under 18",
FamilyMember[Age] >= 65,"3) Over 65",
"2)18 -65"
)
Try these two patterns.
https://www.daxpatterns.com/dynamic-segmentation/
https://www.daxpatterns.com/static-segmentation/
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 |
---|---|
76 | |
76 | |
55 | |
37 | |
34 |
User | Count |
---|---|
99 | |
56 | |
53 | |
44 | |
40 |