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
Greg_Deckler
6 years agoCommunity Champion
ThisIsIt - Perhaps:
DAX Column = IF([Column] = 0,0,[Column]/1000000)
Power Query Column = if [Column] = 0 then 0 else [Column]/1000000