Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
There is Actual Start and Actual End Date. Both columns have null values as project is in progress or no given date. Keep getting errors on below. Any suggestions? Just trying to get a number value on the difference between these 2 columns. Thanks
Days Between = If('BI Projects'[Actual Start]=BLANK(),"",DATEDIFF('BI Projects'[Actual Start], 'BI Projects'[Actual End],DAY))
Solved! Go to Solution.
Hi @ResearchDev
PLease try
Days Between =
IF (
'BI Projects'[Actual Start] <> BLANK ()
&& 'BI Projects'[Actual End] <> BLANK (),
DATEDIFF ( 'BI Projects'[Actual Start], 'BI Projects'[Actual End], DAY )
)
Thanks so much! Worked like magic!
Hi @ResearchDev
PLease try
Days Between =
IF (
'BI Projects'[Actual Start] <> BLANK ()
&& 'BI Projects'[Actual End] <> BLANK (),
DATEDIFF ( 'BI Projects'[Actual Start], 'BI Projects'[Actual End], DAY )
)
Thanks so much!
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
110 | |
95 | |
86 | |
78 | |
66 |
User | Count |
---|---|
157 | |
125 | |
116 | |
111 | |
95 |