This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
I am enetering the following data and power bi is showing some error
1.1001
2.1002
3.1003
4.AP29
5.AP30
The above data is in one column and then by default power bi is taking the data type as Whole Number. Row number with 4,5 is shwing as error as the data type is not getting matched. Plese help me in this issue
Solved! Go to Solution.
Table.TransformColumnTypes(Table6_Table,{{"Numbers", type any}})
Instead of "type text" as per above syntax use "type any" then problem should be solved
Proud to be a Super User!
When PowerBI reads a source, it attempts to match data to a type automatically.
You could disable it in File>OPTIONS>Data Load, and uncheck "Automatically detect column types and headers for unstructured sources".
also, you could change the datatype in edit queries.
https://carldesouza.com/automatically-detect-data-types-in-power-bi/
Regards,
Lin
Ok.After stopping the auto-detection which data type should i select for that column. Should I go with "Text" data. Ig that is the case then what about the numeric data? will it be auttomatically converted into text data type
When PowerBI reads a source, it attempts to match data to a type. It is often wrong. Do you see an entry like
Table.TransformColumnTypes(#"Source", {"Column", Int64.Type})Change Int64.Type to
type text
Table.TransformColumnTypes(Table6_Table,{{"Numbers", type any}})
Instead of "type text" as per above syntax use "type any" then problem should be solved
Proud to be a Super User!
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 30 | |
| 23 | |
| 22 | |
| 16 | |
| 15 |
| User | Count |
|---|---|
| 61 | |
| 35 | |
| 28 | |
| 22 | |
| 21 |