Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
osinquinvdm
Advocate II
Advocate II

We cannot apply field access to the type Null

I need to set a date for some type of data.

Namely when [Nature]="Information", the "End Date" is null and I need to replace that null value by whatever date is in the “Start Date” column.

   

 

#"Filtered Rows" = Table.SelectRows(#"Added Delay", each [Nature] <> null and [Nature] <> ""),
#"Fixed empty date" = Table.TransformColumns(#"Filtered Rows",{"End Date", each if [Nature]="Information" then [Start Date] else [End Date] })

 

Unfortunately I’m getting the following error, even though I made sure Nature is never null nor empty

 

Expression.Error: We cannot apply field access to the type Null.

Details:

    Value=

    Key=Nature

 

Any idea what’s going on?

 

Thanks

1 ACCEPTED SOLUTION
MarcelBeug
Community Champion
Community Champion

With Table.TransformColumns, it is not possible to reference other columns.

 

Instead, you can add a column with the fixed empty date, then delete the original End Date and rename the new column to End Date (and optionally move it to the original location of End Date).

Specializing in Power Query Formula Language (M)

View solution in original post

1 REPLY 1
MarcelBeug
Community Champion
Community Champion

With Table.TransformColumns, it is not possible to reference other columns.

 

Instead, you can add a column with the fixed empty date, then delete the original End Date and rename the new column to End Date (and optionally move it to the original location of End Date).

Specializing in Power Query Formula Language (M)

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors