Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric certified for FREE! Don't miss your chance! Learn more
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?
Solved! Go to Solution.
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.
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.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 69 | |
| 59 | |
| 47 | |
| 20 | |
| 15 |
| User | Count |
|---|---|
| 107 | |
| 104 | |
| 39 | |
| 27 | |
| 27 |