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
Suyheng
Frequent Visitor

Lookup values in Dax (No Relationship in two tables)

Dear All,

Could you help on solving the dax code for the calulation below:

I want to caluclate the sum of revenue collect for year 2018 for the sale in year <2017 where my sale year is in HS table.

 

CALCULATE(SUM(NHSRev[TPaid]),NHSRev[R Year]>2018,
HS[SPA Date (Year)]<"2017",
    NHSRev[SID Ref]<>BLANK(),
        NHSRev[Sale Type]="Payoff",
CROSSFILTER(HS[SPA Date],'Calendar'[Date],Both)
)

Power Pivot Diagram View.PNG

1 ACCEPTED SOLUTION
v-yuta-msft
Community Support
Community Support

Hi Suyheng,

 

Based on your description, you want to enable the indicated relationship between two tables in DirectQuery/Live Connection mode, right?

 

Suppose NHSRev[SID Ref] and HS[SID Ref]) have default relationship between each other, to achieve your requirement, you can use USERELATIONSHIP() instead of LOOKUPVALUE() like below:

 

CALCULATE(SUM(NHSRev[TPaid]),NHSRev[R Year]>2018,
HS[SPA Date (Year)]<"2017",
    NHSRev[SID Ref]<>BLANK(),
        NHSRev[Sale Type]="Payoff",
CROSSFILTER(HS[SPA Date],'Calendar'[Date],Both),

USERELATIONSHIP(NHSRev[SID Ref], HS[SID Ref])
)

 

Best Regards,

Jimmy Tao

View solution in original post

1 REPLY 1
v-yuta-msft
Community Support
Community Support

Hi Suyheng,

 

Based on your description, you want to enable the indicated relationship between two tables in DirectQuery/Live Connection mode, right?

 

Suppose NHSRev[SID Ref] and HS[SID Ref]) have default relationship between each other, to achieve your requirement, you can use USERELATIONSHIP() instead of LOOKUPVALUE() like below:

 

CALCULATE(SUM(NHSRev[TPaid]),NHSRev[R Year]>2018,
HS[SPA Date (Year)]<"2017",
    NHSRev[SID Ref]<>BLANK(),
        NHSRev[Sale Type]="Payoff",
CROSSFILTER(HS[SPA Date],'Calendar'[Date],Both),

USERELATIONSHIP(NHSRev[SID Ref], HS[SID Ref])
)

 

Best Regards,

Jimmy Tao

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.