Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I current have a calculated column that counts the number of days between a column called "End Date" and "Positon Filled" and works great when there are dates in both columns, if there is no date in the "Positon Filled" cloulmn, the "Time to Fill" column is empty. Whats the best way to get the coulmn to use "Today" if "Position Filled" is empty?
@StuartSmith Try:
Time to Fill =
VAR __Date = IF([Position Filled + 1] = BLANK(),TODAY(),[Position Filled + 1])
RETURN
DATEDIFF('Cuser Archive data'[End Date +1], __Date, DAY)
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!