Forum Discussion
Anonymous
3 years agoNot applicable
Custom ranges in Age visual?
I have this Age count: Is there a way of doing custom Ranges in the visual itself (wihtout DAX) ?
- Anonymous3 years ago
HI Anonymous,
You can take a look at the following blog about dynamic segmentations if it help with your scenario:
Dynamic segmentation – DAX Patterns
Regards,
Xiaoxin Sheng
PoweredOut
Resolver I
3 years agoYou can either use Groups https://learn.microsoft.com/en-us/power-bi/create-reports/desktop-grouping-and-binning or create a custom column
Age group = if(age >= 0 && age < 10 , " < 10,
if(age >= 10 && < 20, " 10+", .....