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!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
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.
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 56 | |
| 41 | |
| 39 | |
| 21 | |
| 21 |
| User | Count |
|---|---|
| 146 | |
| 110 | |
| 63 | |
| 38 | |
| 35 |