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

Get Fabric certified for FREE! Don't miss your chance! Learn more

Reply
BO7
Regular Visitor

Separating Values In Columns By A Certain Phrase Without Using Power Query

Hello,

 

I have a description column (see attached file). I am trying to create a new column that only contains the characters after 'Root Cause'. The issue is I cannot use Power Query due to database issues. Is this feasible?

BO7_0-1749222134712.png

 

1 ACCEPTED SOLUTION
ajaybabuinturi
Memorable Member
Memorable Member

Hi @BO7,

You can try with below calculated column

RootCauseOnly =
VAR FullText = JIRA[Description]  
VAR RootText = "Root Cause:"
VAR StartPos = SEARCH(RootText, FullText, 1, -1)
RETURN
IF(StartPos > 0,
    MID(FullText, StartPos + LEN(RootText), LEN(FullText)),
    BLANK()
)

 

Thanks,
If you found this solution helpful, please consider giving it a Like👍 and marking it as Accepted Solution✔. This helps improve visibility for others who may be encountering/facing same questions/issues.

View solution in original post

1 REPLY 1
ajaybabuinturi
Memorable Member
Memorable Member

Hi @BO7,

You can try with below calculated column

RootCauseOnly =
VAR FullText = JIRA[Description]  
VAR RootText = "Root Cause:"
VAR StartPos = SEARCH(RootText, FullText, 1, -1)
RETURN
IF(StartPos > 0,
    MID(FullText, StartPos + LEN(RootText), LEN(FullText)),
    BLANK()
)

 

Thanks,
If you found this solution helpful, please consider giving it a Like👍 and marking it as Accepted Solution✔. This helps improve visibility for others who may be encountering/facing same questions/issues.

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

January Power BI Update Carousel

Power BI Monthly Update - January 2026

Check out the January 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.