Forum Discussion
Hamdan1234
4 years agoHelper III
Convert M to Million
I have the data where it shows the sales in this format 1.36M now I want the Power query to convert it in 1360000. Is their any way ? I have tried doing it with Replace value but did not work. Is the...
- 4 years ago
Hamdan1234
Add a custom column using the following code:Number.From(Text.Replace([Amount],"M" , "")) * 1000000
Fowmy
4 years agoSuper User
Hamdan1234
Add a custom column using the following code:
Number.From(Text.Replace([Amount],"M" , "")) * 1000000