Round down

hnorgaar

New Member
Joined
Jul 21, 2018
Messages
20
Office Version
  1. 2019
Platform
  1. Windows
Hi

How can I round down to nearest 100 i a query?
Thx for any input
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
You can use Number.RoundDown and specify -2 as the number of digits.
 
Upvote 0
sorry missed the forum you are in - my bad
perhaps RoryA will delete my posts
 
Upvote 0
It sounds like you used Number.Round not Number.RoundDown
 
Upvote 0
It sounds like you used Number.Round not Number.RoundDown
#"Rounded Down1" = Table.TransformColumns(#"Rounded Down",{{"Price out (excl VAT, your currency)", Number.RoundDown,-2, Int64.Type}})

Does that looks correct? Doesnt work
 
Upvote 0
No, if you are trying to do it in-place, it would be:

Power Query:
#"Rounded Down1" = Table.TransformColumns(#"Rounded Down",{{"Price out (excl VAT, your currency)", each Number.RoundDown(_, -2), Int64.Type}})
 
Upvote 0
Solution
No, if you are trying to do it in-place, it would be:

Power Query:
#"Rounded Down1" = Table.TransformColumns(#"Rounded Down",{{"Price out (excl VAT, your currency)", each Number.RoundDown(_, -2), Int64.Type}})
Great, thx a lot
 
Upvote 0

Forum statistics

Threads
1,215,202
Messages
6,123,625
Members
449,109
Latest member
Sebas8956

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top