Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
HI
I have been extracting the data from sharepoint office 365 to power bi, here am facing one issue while extracting data from text. Could you please help me, how to extract the highlighted data into one new column.
Kindly refer the below screenshot.
Regards,
Yuvaraj
Solved! Go to Solution.
HI @Anonymous,
You can try to use following formula to extract specific characters from other column:
Comment =
VAR _left =
FIND ( "<p>", [Element], 1, -1 )
VAR result =
MID ( [Element], _left + 3, LEN ( [Element] ) - _left )
RETURN
LEFT ( result, FIND ( "<", result, 1, -1 ) - 1 )
Regards,
Xiaoxin Sheng
HI @Anonymous,
You can try to use following formula to extract specific characters from other column:
Comment =
VAR _left =
FIND ( "<p>", [Element], 1, -1 )
VAR result =
MID ( [Element], _left + 3, LEN ( [Element] ) - _left )
RETURN
LEFT ( result, FIND ( "<", result, 1, -1 ) - 1 )
Regards,
Xiaoxin Sheng
Hi
Thanks for your reply its working fine but for few rows its not as expected due to that delimeter range has been different for every row. Could you please provide any possibile solution to acheive this.
Regards
Yuvaraj
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.