Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi
I have a column that has values like the two below. (They are refrences for energy meters so can't split the column)
1.17E+20
110000145031604032N14
The column type can't be number as some of the values have letters, but when I have it set as text I get the error message 'The number is out of range of a 64 bit integer value.'
Any advice please?
Solved! Go to Solution.
this code
let
type_any = #table(type table [column = any], {{1.17E+20}, {"110000145031604032N14"}}),
type_text = Table.TransformColumnTypes(type_any,{{"column", type text}})
in
type_text
works just fine. Make sure that you change type to text, not Whole Number
I cannot reproduce your issue unless there is there a preceding step where the data type is being set to Int64.Type or Whole Number.
this code
let
type_any = #table(type table [column = any], {{1.17E+20}, {"110000145031604032N14"}}),
type_text = Table.TransformColumnTypes(type_any,{{"column", type text}})
in
type_text
works just fine. Make sure that you change type to text, not Whole Number
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
10 | |
8 | |
7 | |
6 | |
6 |