Forum Discussion
Power Bi String Manipulation gives ambiguous results
- 4 years ago
v-kkf-msft Thanks, this was resolved, had to select the 'Dont Summarize' option in the VIsualization - Columns Section. Sum had gotten selected automatically
Thank you for your response amitchandak , i did what you asked, issue still exists.
That is what i find weird , there seems to be no issue with raw data, its coming from a production BQ table. Also, i have exported the dataset into excel and applied the formulae and they work fine.
Created a new columns
- v-kkf-msft4 years agoCommunity Support
Hi cdvipul ,
Please check if there is zero width space like Character.FromNumber(8203) in your text. As shown below, it has no width, but will be counted into the text length.
You can use the Text.ToList function to create custom column to check for the presence of invisible characters, like this.
= Text.ToList( [TextColUnique] )Then you can create the custom column to remove Character.FromNumber(8203) in Power Query.
= Text.Remove([TextColUnique],Character.FromNumber(8203))If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.