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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
pieterjb
New Member

Conditional replacing of dates

Hello,

 

I am trying to replace dates in column "BASELINE Start Date" with a date of 1 Jan 2000 based on if the value in column "RAG Number" = 4. See querry below. It is not working somehow...

Any help much appreciated!

 

= Table.ReplaceValue(#"Renamed Columns2",each[BASELINE Start Date], each if [RAG Number] = "4" then [BASELINE Start Date] = #date(2000, 1, 1) else [BASELINE Start Date], Replacer.ReplaceValue,{"BASELINE Start Date"})

1 ACCEPTED SOLUTION

 

Perhaps your [RAG Number] column is number type, not text type?

Try changing this:

each if [RAG Number] = "4" >> each if [RAG Number] = 4   // No quotes for number types

 

Pete



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




View solution in original post

4 REPLIES 4
BA_Pete
Super User
Super User

Hi @pieterjb ,

 

Try removing the second explicit reference to your column like this. You've laready identified the column to affect in the second argument, so you shouldn't need to declare it again:

= Table.ReplaceValue(
    #"Renamed Columns2",
    each [BASELINE Start Date],
    each if [RAG Number] = "4" then #date(2000, 1, 1) else [BASELINE Start Date],         
    Replacer.ReplaceValue,{"BASELINE Start Date"}
)

 

If that doesn't work, try changing the Replacer type:

Replacer.ReplaceValue >> Replacer.ReplaceText

 

Pete



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




Thanks for the feedback. I have tried, but unfortunatly no luck.

 

Perhaps your [RAG Number] column is number type, not text type?

Try changing this:

each if [RAG Number] = "4" >> each if [RAG Number] = 4   // No quotes for number types

 

Pete



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




Hi BA_Pete,

 

Great! This indeed solved the problem. Many thanks!

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors
Top Kudoed Authors