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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
redcof
Advocate II
Advocate II

Using reference table

I need help using a reference table.

 

I have these in my Model:

redcof_0-1652297024701.png

I want to add a "Description" column to billing-mrc table and to billing-nrc table.

The following are not a real formulas, just the logic of what I want to do.

For: billing-mrc table new Description column:

If (billing-mrc [Item Code] = Table1 [Item Code] , Table1[Descritpion] , billing-mrc{Item Code])

For billing-nrc table new Description column:

If (billing-nrc [Item Code] = Table1 [Item Code] , Table1[Descritpion] , billing-nrc{Item Code])

 

I really appreciate your time and assistance.

1 ACCEPTED SOLUTION
PabloDeheza
Solution Sage
Solution Sage

Hi @redcof !
Maybe using the RELATED function solves your problem.
RELATED( Table1[Description] )
Let me know if that helps!

View solution in original post

3 REPLIES 3
PabloDeheza
Solution Sage
Solution Sage

Hi @redcof !
Maybe using the RELATED function solves your problem.
RELATED( Table1[Description] )
Let me know if that helps!

That works great for the ones that have matches.  The rest are left blank.  That may be OK for now.  I will let the person with the data know about the missing values.

 

Thanks!

Well, you should be able to solve that with an IF statement:

VAR _Related =
    RELATED( Table1[Description] )
VAR _Result =
    IF(
        ISBLANK( _Related ),
        billing-mrc [Item Code],
        _Related
    )
RETURN
    _Result

 

If this solves your problem please mark this answer as solution.

Thanks! 

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.