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

Split text in calculated column

Hi All, Need some urgent help , I need to split text in calculated column as below please note it is a claculated column so please do not suggest any power quesry tricks it wont work it has to do with right function but not sure:

 

21/01/2022 Resource

01/04/2021 Planning

14/04/2021 Implementation

 

Final result to look like :

Resource

Planning

Implementation

Thanks

1 ACCEPTED SOLUTION

@Anonymous , Check this

Column = RIGHT([Column1],LEN([Column1]) -SEARCH(" ",[Column1],,0))

 

amitchandak_0-1643378152156.png

 

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

Thank you So Much

amitchandak
Super User
Super User

@Anonymous , Try a new column in DAX like

 

Right([COlumn], len([Column]) - search(" ", [Column],,0))

Anonymous
Not applicable

Hi Amit it is throwing error search has the wrong data type or invalid value

@Anonymous , Check this

Column = RIGHT([Column1],LEN([Column1]) -SEARCH(" ",[Column1],,0))

 

amitchandak_0-1643378152156.png

 

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.

Top Solution Authors