Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
I want create a new column measure with the following. If Task Type is "Coax Splicing" and Task Status is "Complete" then put the Task Status Timestamp data in this column which will be Completion Date.
Solved! Go to Solution.
Hi @plunkett40 ,
Here’s the DAX formula to create a calculated column:
Completion Date =
IF(
'YourTable'[Task Type] = "Coax Splicing" && 'YourTable'[Task Status] = "Completed",
'YourTable'[Task Status Timestamp],
BLANK()
)
This formula evaluates each row in the table. If the Task Type is "Coax Splicing" and the Task Status is "Completed", it returns the corresponding Task Status Timestamp as the Completion Date. Otherwise, it returns a blank value.
Since this is a calculated column, it will be precomputed and stored in the dataset, making it useful for table visuals, filtering, and sorting. Let me know if you need any refinements.
Best regards,
Hi @plunkett40 ,
Here’s the DAX formula to create a calculated column:
Completion Date =
IF(
'YourTable'[Task Type] = "Coax Splicing" && 'YourTable'[Task Status] = "Completed",
'YourTable'[Task Status Timestamp],
BLANK()
)
This formula evaluates each row in the table. If the Task Type is "Coax Splicing" and the Task Status is "Completed", it returns the corresponding Task Status Timestamp as the Completion Date. Otherwise, it returns a blank value.
Since this is a calculated column, it will be precomputed and stored in the dataset, making it useful for table visuals, filtering, and sorting. Let me know if you need any refinements.
Best regards,
Fixed a couple of things but not pulling in Task Status Timestamp into new column Buford Completion Date just shows BLANK.

Did I do something wrong? Thanks
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 45 | |
| 38 | |
| 34 | |
| 21 | |
| 17 |
| User | Count |
|---|---|
| 68 | |
| 64 | |
| 31 | |
| 26 | |
| 26 |