Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 41 | |
| 38 | |
| 36 | |
| 30 | |
| 28 |
| User | Count |
|---|---|
| 128 | |
| 88 | |
| 79 | |
| 67 | |
| 62 |