Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

Static Grouping in-between value

Hi All,

 

I'm having a bit of trouble grasping static grouping in DAX. I have 2 tables

1) Age grouping

From    To       Age group

-10A (0)
12B (1-2)
35C (3-5)
610D (6-10)
1120E (11-20)
2130F (21-30)
3150G (31-50)
51100H (51-100)
101999I (100+)

 

And a 2) Tickets:

COMPANYSTATUSTICKET_IDCREATION_DATETICKET_AGE
ATWorking97024807/06/2021497
ATOpen84825007/09/202240
ATOpen99387019/09/202228
ATOpen70167327/09/202220
ATOpen70069727/09/202220

 

My objetive is to, in table 2) "Tickets" create a new column called "Age group" .

This new column is populated with the text in Age Group of Table 1 "Age grouping" by comparing of the value in TICKET_AGE agaisnt "From" and "to" of Table 1 "Age grouping".

How can I go about doing this?

Your insight is much appreciated!

1 ACCEPTED SOLUTION
johnt75
Super User
Super User

Try

Age group =
VAR ReferenceAge = 'Table 2'[Age]
RETURN
    SELECTCOLUMNS (
        FILTER (
            'Table 1',
            'Table 1'[From] <= ReferenceAge
                && 'Table 1'[To] >= ReferenceAge
        ),
        "@val", 'Table 1'[Age group]
    )

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

That tottally worked, thanks a lot!

johnt75
Super User
Super User

Try

Age group =
VAR ReferenceAge = 'Table 2'[Age]
RETURN
    SELECTCOLUMNS (
        FILTER (
            'Table 1',
            'Table 1'[From] <= ReferenceAge
                && 'Table 1'[To] >= ReferenceAge
        ),
        "@val", 'Table 1'[Age group]
    )

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.