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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
jl20
Helper IV
Helper IV

Avoiding Chained Lookup Tables

Hi,

 

I know it's best practice to avoid multiple levels of lookup tables. However, how is this generally done in practice? I have abbreviated city names coming from the fact table, some of which get consolidate (Baltimore into Washington, D.C., for example). I also want to sort these in situations where I don't want the fields in alpha order. Please see below:

 

Unique values from fact table on left, desired rollup on rightUnique values from fact table on left, desired rollup on right               I want to use this table as a slicer and have the ability to modify the sort orderI want to use this table as a slicer and have the ability to modify the sort order

Any way of doing this without creating two tables?

 

Thanks!

 

1 ACCEPTED SOLUTION
Phil_Seamark
Employee
Employee

Hi @jl20

 

You can create a Sort calculated column in your FACT table if you want to avoid the extra table and then use this as your sort col for your main table

 

Sort = SWITCH(
        TRUE() ,
        -- IF/THEN ---
        'Table'[Office] = "Atlanta" , 1 ,
        'Table'[Office]= "Chicago" , 2 ,
        'Table'[Office] = "Cleveland" , 3 ,
-- ELSE -- 999 )

To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

View solution in original post

1 REPLY 1
Phil_Seamark
Employee
Employee

Hi @jl20

 

You can create a Sort calculated column in your FACT table if you want to avoid the extra table and then use this as your sort col for your main table

 

Sort = SWITCH(
        TRUE() ,
        -- IF/THEN ---
        'Table'[Office] = "Atlanta" , 1 ,
        'Table'[Office]= "Chicago" , 2 ,
        'Table'[Office] = "Cleveland" , 3 ,
-- ELSE -- 999 )

To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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