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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.