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
Anonymous
Not applicable

How to track previous location by serial number and date

I'm trying to track the movement of a piece of equipment with the current location and the date. Example: 

 

Serial NumberDateLocationExpected Out Come
12307/10/2018New YorkNew York
1237/20/2018BaltimoreNew York
12308/10/2018MiamiBaltimore
12308/12/2018RichmondMiami

Etc..

 

Right now my code is only find the orgin of where the serial number was located. So everything in the Expected column is reading New York.

 

Orgin = VAR Orgin =
    CALCULATE (
        MIN ( Table_owssvr[Utilization Date] ),
        ALLEXCEPT (Table_owssvr,Table_owssvr[Serial Number] )
    )
RETURN
    CALCULATE (
        SELECTEDVALUE ( Table_owssvr[Port] ),
        FILTER (
            ALLEXCEPT ( Table_owssvr, Table_owssvr[Serial Number]),
            Table_owssvr[Utilization Date] = Orgin
        )
    )

 

Expected Out Come is what I need the column to say. The Date isn't always ordered and the same location can come up more then once. I am using this column on a flow map to track the location of the equipment.

1 ACCEPTED SOLUTION
AlB
Super User
Super User

Hi @Anonymous 

Try this:

Orgin =
VAR Orgin =
    CALCULATE (
        MAX ( Table_owssvr[Utilization Date] );
        Table_owssvr[Utilization Date] < EARLIER ( Table_owssvr[Utilization Date] );
        ALLEXCEPT ( Table_owssvr; Table_owssvr[Serial Number] )
    )
VAR Res_ =
    CALCULATE (
        SELECTEDVALUE ( Table_owssvr[Port] );
        Table_owssvr[Utilization Date] = Orgin
ALLEXCEPT ( Table_owssvr; Table_owssvr[Serial Number] ); ) RETURN IF ( NOT ISBLANK ( Res_ ); Res_; Table_owssvr[Port] )

View solution in original post

1 REPLY 1
AlB
Super User
Super User

Hi @Anonymous 

Try this:

Orgin =
VAR Orgin =
    CALCULATE (
        MAX ( Table_owssvr[Utilization Date] );
        Table_owssvr[Utilization Date] < EARLIER ( Table_owssvr[Utilization Date] );
        ALLEXCEPT ( Table_owssvr; Table_owssvr[Serial Number] )
    )
VAR Res_ =
    CALCULATE (
        SELECTEDVALUE ( Table_owssvr[Port] );
        Table_owssvr[Utilization Date] = Orgin
ALLEXCEPT ( Table_owssvr; Table_owssvr[Serial Number] ); ) RETURN IF ( NOT ISBLANK ( Res_ ); Res_; Table_owssvr[Port] )

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.