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
Hello,
I have two column in my table, Actual start date & Schedule start date
I would like to combine these 2 column into 1 column based on a condition. IF there is an actual date display that one else Schedule start date.
Once I have that column I would then like to measure the duration of that date compared to today's date.
| ProjectID | ActualStart | ScheduleStart | DateValue | Duration |
| A | 2022-10-14 | 2022-10-10 | 2022-10-14 | 4 |
| B | null | 2022-09-23 | 2022-09-23 | 25 |
anyone who can support?
BR
J
Solved! Go to Solution.
Try these calculated columns:
DateValue = COALESCE ( Table1[ActualStart], Table1[ScheduleStart] )Duration = DATEDIFF ( Table1[DateValue], TODAY(), DAY )
Proud to be a Super User!
Try these calculated columns:
DateValue = COALESCE ( Table1[ActualStart], Table1[ScheduleStart] )Duration = DATEDIFF ( Table1[DateValue], TODAY(), DAY )
Proud to be a Super User!
Thanks @DataInsights ! It works
Have another question, now that I have the Duration, I added another measure to give some value based on duration days
if duration >0 && duration <=7, 1,0 etc.
I would like to count number if rows with the value 1 if column Project ID is blank.
so below we have some rows with value 3 and I would like to count number of rows with value 3 where the Project ID rows is blank.
Hope the question makes sense.
Thanks!
You could try a measure like this:
Count Measure =
CALCULATE (
COUNTROWS ( Table1 ),
Table1[Fulfillment] = 1,
ISBLANK ( Table1[ProjectID] )
)
Make sure ProjectID is actually blank and not an empty string.
Proud to be a Super User!
Hi, It didn't exatcly work. I did change the number to match my Fulfillment measure.
I created calculated columns for Duration and Fulfillment, whereas you are using measures. To filter in a CALCULATE expression as I did in line 4 of [Count Measure], you have to use a column. Another advantage to using calculated columns for Duration and Fulfillment is that you can use them in a slicer/filter.
Proud to be a Super User!
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 59 | |
| 46 | |
| 42 | |
| 23 | |
| 17 |
| User | Count |
|---|---|
| 190 | |
| 122 | |
| 96 | |
| 66 | |
| 47 |