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

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

Reply
Anonymous
Not applicable

Using dax to get latest value from another table

I'd like to update table A with values from Table B.
Requirement - to update the latest [Value] based on [Created] where [value] contains 'Quote'.
Catch is, if on the same date quote is sent and approved, then table A needs to be updated with Quote Approved. What is the best way to get the desired outcome.

Quote_Sub = 
VAR CaseNumber = 'A'[CASE NUMBER]
VAR SUB_Table =
    CALCULATETABLE (
        SELECTCOLUMNS (
            FILTER ( B, B[Case Number] = CaseNumber ),
            "Start Date", B[Created],
            "Sub Value", B[Value]
        ),
        CONTAINSSTRING ( DCM_METRIC_INSTANCE[Value], "Quote" )
    )
VAR Quote_A = MAXX(FILTER(SUB_Table, [Sub Value] = "Quote Approved"),[Start Date])
VAR Quote_Ex = MAXX(FILTER(SUB_Table, [Sub Value] = "Quote Expired"),[Start Date])
VAR Quote_R = MAXX(FILTER(SUB_Table, [Sub Value] = "Quote Rejected"),[Start Date])
VAR Quote_Es = MAXX(FILTER(SUB_Table, [Sub Value] = "Quote Escalated"),[Start Date])
VAR Quote_S = MAXX(FILTER(SUB_Table, [Sub Value] = "Quote Sent"),[Start Date])

VAR max_date = MAXX({Quote_A,Quote_Ex,Quote_R,Quote_Es,Quote_S}, [Value])
VAR max_value = 
calculatetable(
    FIRSTNONBLANK(SELECTCOLUMNS( FILTER(SUB_Table,[Start Date]=max_date),
"max Value",[Sub Value]),[max Value])
)
return max_value

 

lalTel20_0-1649048752728.pnglalTel20_1-1649048766597.png

 

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

Hi @Anonymous ,

You can create a calculated column as below in table A, please find the details in the attachment.

Quote_Sub =
VAR _acnum = 'A'[CASE NUMBER]
VAR _maxdate =
CALCULATE ( MAX ( 'B'[Created] ), FILTER ( 'B', 'B'[CASE NUMBER] = _acnum ) )
VAR _count =
CALCULATE (
DISTINCTCOUNT ( 'B'[VALUE] ),
FILTER (
'B',
'B'[CASE NUMBER] = _acnum
&& 'B'[VALUE]
IN { "Quote Approved", "Quote Sent" }
&& 'B'[Created] = _maxdate
)
)
RETURN
IF ( _count = 2, "Quote Approved", 'A'[Value] )

yingyinr_0-1649317979224.png

If the above one is not your expected one, please provide some sample data (exclude sensitive data) in the table A and B with Text format and your expected resultwith backend logic and special examples. It is better if you can share a simplified pbix file with me. You can refer the following thread to upload your file in the community. Thank you.

How to upload PBI in Community

Best Regards

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-yiruan-msft
Community Support
Community Support

Hi @Anonymous ,

You can create a calculated column as below in table A, please find the details in the attachment.

Quote_Sub =
VAR _acnum = 'A'[CASE NUMBER]
VAR _maxdate =
CALCULATE ( MAX ( 'B'[Created] ), FILTER ( 'B', 'B'[CASE NUMBER] = _acnum ) )
VAR _count =
CALCULATE (
DISTINCTCOUNT ( 'B'[VALUE] ),
FILTER (
'B',
'B'[CASE NUMBER] = _acnum
&& 'B'[VALUE]
IN { "Quote Approved", "Quote Sent" }
&& 'B'[Created] = _maxdate
)
)
RETURN
IF ( _count = 2, "Quote Approved", 'A'[Value] )

yingyinr_0-1649317979224.png

If the above one is not your expected one, please provide some sample data (exclude sensitive data) in the table A and B with Text format and your expected resultwith backend logic and special examples. It is better if you can share a simplified pbix file with me. You can refer the following thread to upload your file in the community. Thank you.

How to upload PBI in Community

Best Regards

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
amitchandak
Super User
Super User

@Anonymous , Is there a preference when date is the same

 

example measure

new column =
var _max = maxx(filter(Table, [casenumber] = earlier([casenumber]) ), [Created])
return
maxx(filter(Table, [casenumber] = earlier([casenumber]) && [Created] = _max), [Value])

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here
Anonymous
Not applicable

Hi @amitchandak 
Thank you for your response. Yes the preference is Quote sent gets the least preference, since after the quote is sent, it can be rejected, accepted, escalated or expired on the same day. And it is not always necessary that there will be a subsequent event for a casenumber. In such scenario the atest stage would be quote sent. 

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

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

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

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