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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

View modified data at a certain time

Hello dear community,

 

I have a table that contains all the modifications that has been done to a value with an ID that can connect to the "present time" table.

 

This "history" table has the following columns and lines as an example:

Time of modificationField modifiedOld valueNew valueID
14/10/2022First NameChareCharlesAAABBB
15/10/2022Last NameDooDomBBBCCC

 

The present data has a structure like this:

First NameLast NameID
CharlesFreyAAABBB
AdamDomBBBCCC

 

Is there a way to have a slicer that can show me data from whatever time I want? For exemple if I set the slicer to 13/10/2022 it would show this:

 

First NameLast NameID
ChareFreyAAABBB
AdamDooBBBCCC

 

For the moment all I could do is to merge the "present" table with the "history" by ID and get the the data from the history table, but I don't know what I can do to be able to filter the data from the time that I want, if it's event possible...

 

I hope my question is clear enough, all help is greatly appreciated !

2 REPLIES 2
v-yinliw-msft
Community Support
Community Support

Hi @Anonymous ,

 

You can try this method:

vyinliwmsft_0-1666341386031.png

New column:

First Name2 =
IF (
    [ID] = "AAABBB",
    CALCULATE (
        MIN ( 'Table'[Old value] ),
        FILTER (
            ALL ( 'Table' ),
            [Time of modification] = MIN ( 'Table'[Time of modification] )
        )
    ),
    [First Name]
)
Last Name2 =
IF (
    [ID] = "AAABBB",
    [Last Name],
    CALCULATE (
        MAX ( 'Table'[Old value] ),
        FILTER (
            ALL ( 'Table' ),
            [Time of modification] = MAX ( 'Table'[Time of modification] )
        )
    )
)

 

Is this what your expect?

 

Hope this helps you.

 

Best Regards,

Community Support Team _Yinliw

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

Anonymous
Not applicable

Hi, thank you for your response. I don't really understand how this could solve my problem, since it only takes into consideration one ID which is AAABBB. What about BBBCCC? And since it is a column, how will it filter by date like I would want to? I'd like to "go back" to the date and view how the data was from that date.

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors