March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Dear all
I have a log table to record each action ("Action" column), when it happen ("Log_Time" column), and its meaning ("Process" column).
My target is to automatically update the "Process" column when there is a new action happen after the previous action.
Below is an example:
Action A, B, and C happened again, so the process start over after the latest Action A.
Action | Log_Time | Process |
Action A | 1/1/2022 | Start of Process A |
Action B | 2/1/2022 | Start of Process B |
Action C | 3/1/2022 | Start of Process C |
Action D | 3/15/2022 | Start of Process D |
Action E | 4/1/2022 | Start of Process E |
Action A | 5/1/2022 | |
Action B | 5/4/2022 | |
Action C | 5/15/2022 |
Action | Log_Time | Process |
Action A | 1/1/2022 | |
Action B | 2/1/2022 | |
Action C | 3/1/2022 | |
Action D | 3/15/2022 | |
Action E | 4/1/2022 | |
Action A | 5/1/2022 | Start of Process A |
Action B | 5/4/2022 | Start of Process B |
Action C | 5/15/2022 | Start of Process C |
Many thanks!
Solved! Go to Solution.
sorry, somehow forgot to paste in the code for the calculated column:
Column =
VAR _action_A_max =
CALCULATE (
MAX ( 'Table'[Log_time] ),
FILTER ( ALL ( 'Table' ), 'Table'[Process] = "Action A" )
)
RETURN
IF (
'Table'[Log_time] >= _action_A_max,
CONCATENATE ( "Start of Process ", RIGHT ( 'Table'[Process], 1 ) ),
BLANK ()
)
Thanks Sturla! It works!
Hi,
you create this calculated column
which returns this:
Cheers,
Sturla
If this post helps, then please consider Accepting it as the solution. Kudos are nice too.
Hi Sturla, would you mind sharing the pbix file? Thanks!
sorry, somehow forgot to paste in the code for the calculated column:
Column =
VAR _action_A_max =
CALCULATE (
MAX ( 'Table'[Log_time] ),
FILTER ( ALL ( 'Table' ), 'Table'[Process] = "Action A" )
)
RETURN
IF (
'Table'[Log_time] >= _action_A_max,
CONCATENATE ( "Start of Process ", RIGHT ( 'Table'[Process], 1 ) ),
BLANK ()
)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
133 | |
90 | |
88 | |
64 | |
58 |
User | Count |
---|---|
201 | |
137 | |
107 | |
70 | |
68 |