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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Anonymous
Not applicable

Inserting NULL Values / SQL Automatically Populates Values

Think of this scenario. You check out a library book and have not yet returned it. In the database, it will have a Check Out date (start date) and should not have a Check In date (end date). 

 

My SQL query has 2 date values: 1. Start Date 2. End Date. The end date cannot have any null values so it will auto populate with 1900-01-01 00:00:000. 

 

CURRENT PROBLEM: This auto populate is messing up my calculations because I am looking to have NULL values where the end date is still pending. 

FAILED SOLUTION ATTEMPT: I tried to replace the value in PBI but it will not let me proceed without a value to replace (NULL will not be accepted). I also tried to do a CASE in SQL but that didn't work either.

 

How would you approach this? Lets say you need to calculate how many library books are returned on a monthly/weekly/daily/hourly level...how would you approach this since there is a prepopulated field where there is suppose to be a NULL? 

 

replacevalue.png

1 ACCEPTED SOLUTION
v-juanli-msft
Community Support
Community Support

Hi @Anonymous 

1.Write this code in Advanced editor

#"Replaced Value" = Table.ReplaceValue(#"Changed Type",#datetime(1900, 1, 1, 0, 0, 0)," ",Replacer.ReplaceValue,{"end date"}),

#"Changed Type" is last step name

7.png

 

2.Transform "end date" column to "datetime" format

 

3.Click on "end date",

  Add Column->add date, date only, then a new column [Date] is added

 

Close&&apply,

 

"calculate how many library books are returned on a monthly/weekly/daily/hourly level"

4. Create a calendar table, then create relationship based on my table[Date]

calendar = ADDCOLUMNS( CALENDARAUTO(),"year",YEAR([Date]),"month",MONTH([Date]),"week",WEEKNUM([Date],2))

Add "year","month","week" in the "Row" fields.

8.png

 

 

As for hourly level, please provide more details with some data or expect result.

 

If problem "Inserting NULL Values", i would suggest you to post another one for hourly level result, so more engineers will involve in your problem.

 

Best Regards
Maggie

 

Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-juanli-msft
Community Support
Community Support

Hi @Anonymous 

1.Write this code in Advanced editor

#"Replaced Value" = Table.ReplaceValue(#"Changed Type",#datetime(1900, 1, 1, 0, 0, 0)," ",Replacer.ReplaceValue,{"end date"}),

#"Changed Type" is last step name

7.png

 

2.Transform "end date" column to "datetime" format

 

3.Click on "end date",

  Add Column->add date, date only, then a new column [Date] is added

 

Close&&apply,

 

"calculate how many library books are returned on a monthly/weekly/daily/hourly level"

4. Create a calendar table, then create relationship based on my table[Date]

calendar = ADDCOLUMNS( CALENDARAUTO(),"year",YEAR([Date]),"month",MONTH([Date]),"week",WEEKNUM([Date],2))

Add "year","month","week" in the "Row" fields.

8.png

 

 

As for hourly level, please provide more details with some data or expect result.

 

If problem "Inserting NULL Values", i would suggest you to post another one for hourly level result, so more engineers will involve in your problem.

 

Best Regards
Maggie

 

Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.