cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
Kfausch
Helper II
Helper II

How to make specific dates blank

Hello,

 

I am using a OData feed to pull in a price list with a start and end date, in some cases the end date is left blank because we are not sure when the sales price will end. When this is pull into Power BI all the blank dates show as 1/1/2001. Is there a formula I can use to make all dates = 1/1/2001 blank?

 

This is what I tried:

IF ('Sales Price'[Ending_Date] = 1/1/2001, BLANK (), 'Sales Price'[Ending_Date])

 

But still pulls in the 1/1/2018 instead of making that cell blank.

 

Thanks in advance for any guidance!

1 ACCEPTED SOLUTION
jdbuchanan71
Super User
Super User

@Kfausch

It looks like you want to replace any [Ending_Date] of Jan 1st with a blank. If so, this should do the trick.

IF ( MONTH ( 'Sales Price'[Ending_Date] ) = 1 && DAY ( 'Sales Price'[Ending_Date] ) = 1, BLANK() , 'Sales Price'[Ending_Date] )

View solution in original post

2 REPLIES 2
EnsFlynn
Frequent Visitor

@Kfausch Alternatively, you could try using the Replace Values function in query editor to replace all of the 1/1/2001 with null values. Just open the query editor, right click somewhere in the end date column, and click replace values. A box should pop up (like the one below). Just enter what date you want to replace, and what you want to replace it with.

 

 

replace values.PNG

 

jdbuchanan71
Super User
Super User

@Kfausch

It looks like you want to replace any [Ending_Date] of Jan 1st with a blank. If so, this should do the trick.

IF ( MONTH ( 'Sales Price'[Ending_Date] ) = 1 && DAY ( 'Sales Price'[Ending_Date] ) = 1, BLANK() , 'Sales Price'[Ending_Date] )

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors