Forum Discussion
JasonF
9 years agoNew Member
Performing division on a single column
Hi All. Very new to all this and am struggling to work out how I go about changing a column data by dividng it by a fixed number. I have a set of data from the source that has come in as bytes a...
- 9 years ago
In Power Query (Query Editor), you can use the standard math functions to create a step that divides the column on import. If you do not do it on import, you create a custom column or measure and put in a formula like:
Column = DIVIDE([Column],1000000)
Greg_Deckler
Community Champion
9 years agoIn Power Query (Query Editor), you can use the standard math functions to create a step that divides the column on import. If you do not do it on import, you create a custom column or measure and put in a formula like:
Column = DIVIDE([Column],1000000)