Forum Discussion
Text Field was Read as Scientific Number
- 8 months ago
Hi dprasetyo
Is the scientific notation appearing in Power Query Editor, in the data view, or only in a report visual?
After changing the column to Text, did you apply the change in Power Query and click Close & Apply?
Is there any step in Power Query (for example Changed Type or Added Custom Column) that might be converting the value back to a number?
can you share the error screenshot or sample CSV data file ?
Hi dprasetyo,
Can you check if the data type of the column ID is changed to TEXT with Power Query ?
You can force Text Rendering by creating a measure
ID_Display =
FORMAT ( TableA[ID], "@" )
OR
ID_Display =
"" & TableA[ID]
Use ID_Display only in visuals.
Hope it can help you!
Best regards,
Antoine
thanks for the suggestion.
I've tried both but it still shows notation symbol.