The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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