I will like to do it in a query if possiblehow about
=FLOOR(A2, 100)
Tried that but 11478.75 gives me 11.500, should be 11.400You can use Number.RoundDown and specify -2 as the number of digits.
#"Rounded Down1" = Table.TransformColumns(#"Rounded Down",{{"Price out (excl VAT, your currency)", Number.RoundDown,-2, Int64.Type}})It sounds like you used Number.Round not Number.RoundDown
#"Rounded Down1" = Table.TransformColumns(#"Rounded Down",{{"Price out (excl VAT, your currency)", each Number.RoundDown(_, -2), Int64.Type}})
Great, thx a lotNo, 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}})