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! Learn more
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 | |
| 5 | |
| 4 | |
| 3 | |
| 3 | 
| User | Count | 
|---|---|
| 23 | |
| 12 | |
| 11 | |
| 10 | |
| 9 |