Forum Discussion
ThisIsIt
6 years agoFrequent Visitor
Insert Decimal
Good morning! I have a whole number column, and I'd like to insert a decimal after the second digit. How would I go about doing this? Example below. Currently the number is: 12345678 I'd like the numb...
- 6 years ago
ThisIsIt - Perhaps:
DAX Column = IF([Column] = 0,0,[Column]/1000000) Power Query Column = if [Column] = 0 then 0 else [Column]/1000000
amitchandak
Super User
6 years agoThisIsIt ,
create a number like [column]/1000000 , change data type to decimal with 6 decimal place
12345678/1000000