It is in fact possible to do rounding within a QUERY, but it needs to be done indirectly with a bit of maths. To do so, you have to exploit the (undocumented, I think) modulo operator (%). Replicating the answer given by player0:

=ArrayFormula(query(query(query({B:C,month(C:C&1)}, "select Col2, sum(Col1), Col3 where Col2 is not null group by Col2,Col3 order by Col3"),"select Col1,Col2,(Col2+100)-(Col2+100)%100"),"offset 1",0))

What we are doing here within the query is adding 100 to each amount, then from this subtracting (amount+100) modulo 100, which rounds the answer back down to the nearest hundred (achieving the same result as you requested). It should be possible to do account for other rounding scenarios by changing the addend and modulus accordingly.

Answer from The God of Biscuits on Stack Overflow
๐ŸŒ
Google Support
support.google.com โ€บ docs โ€บ answer โ€บ 3093471
CEILING - Google Docs Editors Help
The CEILING function rounds a number up to the nearest integer multiple of specified significance. Sample Usage CEILING(23.25,0.1) CEILING(A2,1) Syntax CEILING(value, [factor]) value
๐ŸŒ
Owox
owox.com โ€บ blog โ€บ articles โ€บ ceiling-floor-round-google-sheets
CEILING, FLOOR, ROUND: Google Sheets Functions Guide 2025
October 10, 2025 - In cell E3, the formula will return 18, to simplify inventory management. The FLOOR function in Google Sheets rounds numbers down to the nearest specified multiple, making it ideal for scenarios where downward rounding is preferred.
Discussions

Using ceiling function within Google Sheets QUERY - Stack Overflow
I'm trying to use the QUERY function in Google Sheets to summarize the data from another sheet. I have a sheet named Expenses in which I list expenses by description, amount (column B) and the mont... More on stackoverflow.com
๐ŸŒ stackoverflow.com
Why is the Ceiling function messing with me... I feel like I'm on crazy pills.
Integer division happens before the ceiling function. Gotta have either numerator or denominator be a decimal. More on reddit.com
๐ŸŒ r/AppSheet
8
4
August 22, 2025
Ceiling command in same cell.
=CEILING(E4*C4*0.0333+E4,0.5)
More on reddit.com
๐ŸŒ r/googlesheets
3
1
June 20, 2013
Mass inserting "CEILING" function without increasing cells/numbers upon dragging?

like, =CEILING($B$2,2.5)? If not, can you give us some sample data.

More on reddit.com
๐ŸŒ r/sheets
9
1
May 23, 2017
๐ŸŒ
Google Sheets
sheetshelp.com โ€บ sheets help โ€บ math โ€บ ceiling function - google sheets
CEILING Function - Google Sheets
September 28, 2023 - The CEILING function in Google Sheets rounds a number up to the nearest integer multiple of a specified significance.
๐ŸŒ
Softr
softr.io โ€บ google-sheets โ€บ formulas โ€บ ceiling โ€บ r โ€บ t5fuDf8LwFqgE3XQq7rRb
How to use CEILING in Google Sheets - Guide
The Rounds a number up to the nearest integer multiple of specified significance. Learn more the ceiling function in google sheets rounds a number up to the nearest integer multiple of specified significance.
๐ŸŒ
Google Support
support.google.com โ€บ docs โ€บ answer โ€บ 9061515
CEILING.MATH function - Google Docs Editors Help
The CEILING.MATH function rounds a number up to the nearest integer or to the nearest multiple of specified significance. It also specifies whether the number is rounded toward or away from 0 dependin
๐ŸŒ
Sturppy
sturppy.com โ€บ formulas โ€บ ceiling-math-google-sheets-formula
CEILING.MATH: Google Sheets formulas explained
May 30, 2023 - In simple terms, CEILING.MATH is a Google Sheets formula that rounds a number up to the nearest specified multiple.
Find elsewhere
๐ŸŒ
Formula Bot
app.formulabot.com โ€บ google-sheets โ€บ ceiling-function
CEILING Google Sheets Formula - Function, Examples, How to Use
The CEILING function in Google Sheets rounds a number up to the nearest multiple of a specified factor, helping with precise calculations and data analysis.
๐ŸŒ
Better Sheets
bettersheets.co โ€บ formulas โ€บ ceiling
How to Use CEILING() function in Google Sheets ยท Better Sheets
CEILING() is a math Google Sheets formula that Rounds a number up to the nearest integer multiple of specified sig...
๐ŸŒ
ExcelMojo
excelmojo.com โ€บ home โ€บ google sheets โ€บ ceiling.math function in google sheets
CEILING.MATH Function in Google Sheets - Formula, How To Use
December 4, 2024 - The CEILING.MATH function in Google Sheets returns the smallest integer which is greater than or equal to the given number. However, the FLOOR function is just the opposite. It returns the largest integer number which is less than or equal to ...
๐ŸŒ
Google Sheets
sheetshelp.com โ€บ sheets help โ€บ math โ€บ ceiling.math function โ€“ google sheets
CEILING.MATH Function โ€“ Google Sheets - Sheets Help
October 30, 2025 - The CEILING.MATH function in Google Sheets rounds a number up to the nearest integer multiple of a specified significance.
๐ŸŒ
Formula Bot
app.formulabot.com โ€บ google-sheets โ€บ ceilingprecise-function
CEILING.PRECISE Google Sheets Formula - Function, Examples, How to Use
Use CEILING.PRECISE in Google Sheets to round a number up to the nearest specified significance, regardless of its sign. Simplify your calculations today!
๐ŸŒ
Sheetaki
sheetaki.com โ€บ home โ€บ how to use ceiling function in google sheets
How To Use CEILING Function in Google Sheets - Sheetaki
November 8, 2022 - The CEILING function is an important Google Sheet function that helps you round up a specific number to the numberโ€™s nearest given integer multiple.
๐ŸŒ
Checksheet
checksheet.app โ€บ google-sheets-formulas โ€บ iso.ceiling
ISO.CEILING Google Sheets Formula | Check Sheet
The ISO.CEILING function rounds a number up to the nearest integer or to the nearest multiple of a specified significance, whichever is greater. This function is often used in financial calculations where values must be rounded up to adhere ...
๐ŸŒ
Reddit
reddit.com โ€บ r/appsheet โ€บ why is the ceiling function messing with me... i feel like i'm on crazy pills.
r/AppSheet on Reddit: Why is the Ceiling function messing with me... I feel like I'm on crazy pills.
August 22, 2025 -

So I have a Google Sheet with the column specifically set to Number. I have the field set to Number.

No matter what I try to do with ceiling() it will not round up. Checked my formulas values and even tried a simple generic math expression:

Simple math expression: ceiling(35/2) as shown below:

Expresion: ceiling(35/2)

This should return 18 not 17, correct? It did not, while the Row value is set to Number (see above) it returned the rounded down value below for every row:

Any help or guidance is appreciated even if it's to point out something reaaaalllly simple I am missing or doing. I will take my lumps as needed.

๐ŸŒ
Sheetaki
sheetaki.com โ€บ home โ€บ how to use the iso.ceiling function in google sheets
How to Use ISO.CEILING function in Google Sheets - Sheetaki
July 9, 2023 - In mathematics and computer science, a ceiling function maps a given value x to the lowest integer greater than or equal to x. When writing equations, the ceiling function is often indicated using the following notation: โŒˆxโŒ‰. Google Sheets includes a built-in ceiling function called ISO.CEILING, which you can use to round up values.
๐ŸŒ
InfoInspired
infoinspired.com โ€บ home โ€บ google docs โ€บ spreadsheet
CEILING Function in Google Sheets: How to Use It with Examples
October 27, 2024 - Sheets Vs. Excel ... The CEILING function in Google Sheets allows you to round a number up to the nearest integer multiple of a specified significance. In contrast, the FLOOR function rounds a number down, while the MROUND function rounds a ...
๐ŸŒ
Better Sheets
bettersheets.co โ€บ formulas โ€บ ceiling-precise
How to Use CEILING.PRECISE() function in Google Sheets ยท Better Sheets
CEILING.PRECISE() is a math Google Sheets formula that Rounds a number up to the nearest integer multiple of specified sig...
๐ŸŒ
Modernschoolbus
modernschoolbus.com โ€บ home โ€บ how to use the ceiling function in google sheets
How to Use the CEILING Function in Google Sheets
Next, I will walk you through step ... the steps: 1. First, select the cell where you want the function to calculate and type the equals signs on your keyboard (=), then type โ€œceilingโ€ and press Tab...
๐ŸŒ
The Bricks
thebricks.com โ€บ resources โ€บ how-to-use-ceiling-in-google-sheets-a-step-by-step-guide
How to Use CEILING in Google Sheets: A Step-by-Step Guide
The CEILING function in Google Sheets always rounds a number up to the nearest integer multiple of a specified number, called the "factor" or "significance." Think of it as a way to set a rounding rule that goes beyond simple whole numbers.