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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
kenmuir71
Helper I
Helper I

Issue with Lookup Value to get value from previouse date

Hi All

 

First post so hopefully this is the right place. I have a large table of data (a sample below). I want to create a column where it will show the position of the ProductID of the previous date. So for the 5th December the position will be 100019023. Please note that in the table there will be a date for each position, its the the ProductID that may change by day. I've been trying to solve this using LookupValue but with no luck!

forum.PNG

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

Hi @kenmuir71 

Create a column

Column =
CALCULATE (
    MAX ( 'Table'[Position] ),
    FILTER (
        'Table',
        'Table'[ProductID] = EARLIER ( 'Table'[ProductID] )
            && 'Table'[date] < EARLIER ( 'Table'[date] )
    )
)

Capture9.JPG

Best Regards
Maggie
Community Support Team _ Maggie Li
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-juanli-msft
Community Support
Community Support

Hi @kenmuir71 

Create a column

Column =
CALCULATE (
    MAX ( 'Table'[Position] ),
    FILTER (
        'Table',
        'Table'[ProductID] = EARLIER ( 'Table'[ProductID] )
            && 'Table'[date] < EARLIER ( 'Table'[date] )
    )
)

Capture9.JPG

Best Regards
Maggie
Community Support Team _ Maggie Li
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

Try

First Sales Date = MAXX(filter(purchase,purchase[Date]<EARLIER(Sales[Date]) && Sales[Product Id]= EARLIER(purchase[Product Id])),purchase[position])

 

Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution. In case it does not help, please provide additional information and mark me with @
Thanks. My Recent Blog -
https://community.powerbi.com/t5/Community-Blog/Winner-Topper-on-Map-How-to-Color-States-on-a-Map-wi...
https://community.powerbi.com/t5/Community-Blog/HR-Analytics-Active-Employee-Hire-and-Termination-tr...
https://community.powerbi.com/t5/Community-Blog/Power-BI-Working-with-Non-Standard-Time-Periods/ba-p...
https://community.powerbi.com/t5/Community-Blog/Comparing-Data-Across-Date-Ranges/ba-p/823601

Yggdrasill
Responsive Resident
Responsive Resident

the function EARLIER() is your friend.

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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