Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register 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!
User | Count |
---|---|
123 | |
76 | |
63 | |
50 | |
50 |
User | Count |
---|---|
175 | |
125 | |
60 | |
60 | |
58 |