Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
I need to convert this tableau calculated field to Power BI query. Help with this is needed.
if isnull[Actual date]
then [planned date]
else [Actual date]
How do I convert this to PBI measure?
Solved! Go to Solution.
please try
Measure =
VAR ActualDate = [Actual Date]
VAR PlannedDate = [Planned Date]
RETURN
IF(ISBLANK(ActualDate), PlannedDate, ActualDate)
please try
Measure =
VAR ActualDate = [Actual Date]
VAR PlannedDate = [Planned Date]
RETURN
IF(ISBLANK(ActualDate), PlannedDate, ActualDate)
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 |
|---|---|
| 9 | |
| 4 | |
| 4 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 13 | |
| 9 | |
| 9 | |
| 8 | |
| 7 |