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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Change value in Cells

This sounds easy, but I can't seem to figure this out.

 

I'm trying to change the values from dates starting with 2018 to True if there is a date or false if there isn't one.

 

It replaces the 2018 but leaves the trailing number still, I tried using the advanced editor but I can't seem to get it working.

 

Does anyone know how to do this for multi columns?

 

Thanks!

 

Powerbi.JPG

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

Hi @Anonymous,

 

We can create calcualted column to work on it.

 

Column = 
VAR _YEAR =
    YEAR ( 'Table1'[date] )
VAR _YEAR1 =
    YEAR ( 'Table1'[date1] )
VAR _YEAR2 =
    YEAR ( 'Table1'[date2] )
RETURN
    IF ( _YEAR = 2018 && _YEAR1 = 2018 && _YEAR2 = 2018, TRUE (), FALSE () )

Capture.PNG

 

For more details, please check the pbix as attached.

 

Regards,

Frank

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

View solution in original post

3 REPLIES 3
v-frfei-msft
Community Support
Community Support

Hi @Anonymous,

 

We can create calcualted column to work on it.

 

Column = 
VAR _YEAR =
    YEAR ( 'Table1'[date] )
VAR _YEAR1 =
    YEAR ( 'Table1'[date1] )
VAR _YEAR2 =
    YEAR ( 'Table1'[date2] )
RETURN
    IF ( _YEAR = 2018 && _YEAR1 = 2018 && _YEAR2 = 2018, TRUE (), FALSE () )

Capture.PNG

 

For more details, please check the pbix as attached.

 

Regards,

Frank

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.
Anonymous
Not applicable

I'm still a bit novice with the query, so I took both answers, mainly creating a custom column and using if Date.Year(date)=2018 then "true" else "false".

 

Frank's attachment helped quit a but, as I couldn't figure out how to get to the formula part of it... I'm sure there is a better way, but for my skillset, it works.

 

Thanks both!

jthomson
Solution Sage
Solution Sage

It might be a lot simpler to pivot/unpivot everything into two columns of fruit and date, then you can just make a new custom column of something like:

 

if Date.Year(date)=2018 then "true" else "false"

 

Then delete the existing date column and reverse the fruit pivoting/unpivoting

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

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.