Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.
Hello everybody,
I have a table with lot's of process sequences listed up.
Each process sequence is one separate line, with a different status, and different time stamp.
I want now to get one special timestamp, if it matches the criteria, and return the time stamp as new column (only if criteria is met). How can I do it?
I tried like that, but it fails because of "no single value in table...":
Solved! Go to Solution.
Hi @Anonymous ,
Since you did not give a specific table, I had to create my own table for testing according to your description, please point out if there are any problems.
Please try below steps:
1.below is my test table
PhaseInfo:
2. add a new column with below dax formula
Special time stamp =
CALCULATE (
MAX ( PhaseInfo[Date Time] ),
FILTER (
PhaseInfo,
PhaseInfo[Operation_ID] = "Finishing"
&& PhaseInfo[Phase_ID] = "HAND"
&& PhaseInfo[Action_CD] = 226
)
)
Please refer the .pbix file.
Best regards,
Community Support Team_ Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
Since you did not give a specific table, I had to create my own table for testing according to your description, please point out if there are any problems.
Please try below steps:
1.below is my test table
PhaseInfo:
2. add a new column with below dax formula
Special time stamp =
CALCULATE (
MAX ( PhaseInfo[Date Time] ),
FILTER (
PhaseInfo,
PhaseInfo[Operation_ID] = "Finishing"
&& PhaseInfo[Phase_ID] = "HAND"
&& PhaseInfo[Action_CD] = 226
)
)
Please refer the .pbix file.
Best regards,
Community Support Team_ Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Binbin Yu,
this measure is working now. The only issue is, that it gives me the time stamp from a different batch.
So basically the table you have created, has for each time stamp also a batch number in relation.
What's now missing is, that it takes the "special time stamp" for that exact batch number, which is present in my table report. How can I do this now?
My table looks like this now:
The "special time stamp" is not from "OW2226". So what can I do now?
Thanks!
Hi @Anonymous ,
I'm a little confused about your needs, Could you please explain them further? It would be good to provide a screenshot of the results you are expecting.
Thanks for your efforts & time in advance.
Best regards,
Community Support Team_ Binbin Yu
@Anonymous , other than one parenthesis position, the measures seem correct
Special time stamp = Calculate(MAX(PhaseInfo[DateTime]) ,Filter(PhaseInfo,PhaseInfo[Operation_ID] = "Finishing" && PhaseInfo[Phase_ID] = "HAND" && PhaseInfo[Action_CD] = "226"))
Check out the May 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
72 | |
67 | |
65 | |
43 | |
42 |
User | Count |
---|---|
47 | |
38 | |
28 | |
28 | |
27 |