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
Solved! Go to Solution.
Learning Period =
IF (
Installations[Date Learning Period Started] <= TODAY ()
&& TODAY () <= Installations[Expected Learning Period End Date],
"In Learning Period",
IF (
TODAY () > Installations[Expected Learning Period End Date],
"Pilot in progress",
IF (
Installations[Date Learning Period Started] > TODAY (),
"Upcoming/Pilot Prep"
)
)
)
Learning Period =
IF (
Installations[Date Learning Period Started] <= TODAY ()
&& TODAY () <= Installations[Expected Learning Period End Date],
"In Learning Period",
IF (
TODAY () > Installations[Expected Learning Period End Date],
"Pilot in progress",
IF (
Installations[Date Learning Period Started] > TODAY (),
"Upcoming/Pilot Prep"
)
)
)
This seems to work! Didn't realize I needed that &&. Thanks so much!
Hi @DanielTraub
please use
Learning Period =
VAR TodayDate =
TODAY ()
RETURN
IF (
Installations[Date Learning Period Started] <= TodayDate
&& Installations[Expected Learning Period End Date] >= TodayDate,
"In Learning Period",
IF (
TodayDate > Installations[Expected Learning Period End Date],
"Pilot in progress",
IF (
Installations[Date Learning Period Started] > TodayDate,
"Upcoming/Pilot Prep"
)
)
)
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 7 | |
| 6 | |
| 5 | |
| 5 |
| User | Count |
|---|---|
| 24 | |
| 11 | |
| 9 | |
| 9 | |
| 8 |