EDUCBA Logo

EDUCBA

MENUMENU
  • Explore
    • EDUCBA Pro
    • PRO Bundles
    • Featured Skills
    • New & Trending
    • Fresh Entries
    • Finance
    • Data Science
    • Programming and Dev
    • Excel
    • Marketing
    • HR
    • PDP
    • VFX and Design
    • Project Management
    • Exam Prep
    • All Courses
  • Blog
  • Enterprise
  • Free Courses
  • Log in
  • Sign Up
Home Excel Excel Resources Excel Tips CEILING Function in Excel
 

CEILING Function in Excel

Jeevan A Y
Article byJeevan A Y
Madhuri Thakur
Reviewed byMadhuri Thakur

Updated August 16, 2023

CEILING Function in Excel

 

 

CEILING Function (Table of Contents)
  • CEILING in Excel
  • CEILING Formula in Excel
  • How to use the CEILING Function in Excel?

Introduction to CEILING in Excel

The ceiling function is another mathematical function in Excel that is quite useful and is used for rounding off any decimal number closer to the value selected in the function but away from 0. RND function rounds off any decimal value to a whole number, whereas in the Ceiling function, we can choose the number to which extent we want to see the decimal number. We can either get the whole number or value in 0.5 formats.

Watch our Demo Courses and Videos

Valuation, Hadoop, Excel, Mobile Apps, Web Development & many more.

In simple terms, you provide both number and significance numbers and ask Excel to round up the given to the nearest multiple of the given significance number.

For example: If the formula reads =CEILING (22, 8), it will return the value of 24. Now, let us break down the formula.

If you multiply 8 by 3, the resulting number is 24. The supplied number is 22, and the nearest multiple numbers of 8.

8 * 1 = 8 (Not nearest to 22)

8 * 2 = 16 (Not nearest to 22)

8 * 3 =24 (Nearest to 22)

8 * 4 = 32 (Too far from 22)

So CEILING function returns the nearest multiple of the significant number to the nearest supplied number.

CEILING Formula in Excel:

The Formula for the CEILING function is as follows:

CEILING Formula in Excel

The Formula of the CEILING function includes 2 arguments.

  • Number: It is a mandatory argument. The number you want to round up.
  • Significance: This is also a required argument. This is the number you are multiplying to round up the first given number.

How to Use the CEILING Function in Excel?

CEILING in Excel is very simple and easy to use. Let us understand the working of the CEILING function by some examples.

You can download this CEILING Function Excel Template here – CEILING Function Excel Template

Example 1

In the below image, I have applied the CEILING function to the numbers from A2:A7. I will discuss this one by one.

CEILING Example 1

  • In the first formula, the given number is 5.236, and the significance we are giving is 0.1. Formula used is =CEILING(A2,B2)

CEILING Example 1-1

The formula returned the value of 5.3, which means the formula rounded up the 5.236 to the next nearest multiple of 0.1, i.e. 5.30.

CEILING Example 1-2

  • In the second formula, we are rounding up the 5.5 to the next decimal number, i.e. 5.6. The formula used is =CEILING(A3,B3)

CEILING Example 1-3

The significance we have given is 0.7, i.e. 0.7*8=5.60.

CEILING Example 1-4

  • Now look at the third formula number is 10, and the significant number is 4. One thing you need to observe here is 4*2=8 (this is also nearest to 10) and 4*3=12 (this is also nearest to 10). The formula used is =CEILING(A4,B4)

CEILING Example 1-5

CEILING always returns the next nearest number. O, the result of the formula is 12.

CEILING Example 1-6

  • The fourth formula number is 20, and the significant number is 3, i.e. 3*7 = 21, which is nearest to 20. Formula used is =CEILING(A5,B5)

CEILING Example 1-7

The result of the formula is 21.

CEILING Example 1-8

  • CEILING also works for negative numbers too. In the fifth formula, the number is negative (-8), and the significance is positive (3). 3*3 = 9, which is nearest to 8. The Formula used is =CEILING(A6,B6)

CEILING Example 1-9

Since it is a negative number, the formula returns the lower value, i.e. 3*2=6, and the supplied number is negative; the result also will be negative only (-6).

CEILING Example 1-9.1

  • Final formula is 0.5*2 = 1 that is round up of 0.56. 0.5*1 = 0.5 only this is lower than the original value of 0.56. Formula used is =CEILING(A7,B7)

CEILING Example 1-10

The next highest value is 1.

CEILING Example 1-10.1

Example 2

In the first example, we have seen positive numbers with positive significance. In this example, I will explain the scenarios of negative numbers with positive significance.

CEILING Example 2

Negative numbers always round down the values, unlike positive numbers, which always round up the values.

  • In the first formula, the number is -12, and the significance is 5. Formula used is =CEILING(A2,B2)

CEILING Example 2-1

Significance multiple is 5*2 = -10 which is nearest to -12 unlike 5*3 =-15.

CEILING Example 2-1.1

  • The second formula returns 0; the reason behind this is the given number is -6, but we are multiplying values is 8, which always returns the value of more than 6. The formula used is =CEILING(A3,B3).

CEILING Example 2-2

Therefore, the formula returns nothing.

CLNG Example 2-2.1

  • Third, one is also the same as the second one. The significant number is more than the given number. Formula used is = CEILING(A4,B4).

CLNG Example 2-3

The result will be zero.

CLNG Example 2-3.1

  • In the fourth formula, a number is -15, and significance is 6. A formula used is =CEILING(A5,B5).

CLNG Example 2-4

Significance multiple is 6*2 = -12 which is nearest to -15 unlike 6*3 =-18.

CLNG Example 2-4.1

  • In the fifth formula, a number is -10, and significance is 5. The formula used is =CEILING(6,B6).

CLNG Example 2-5

The significance multiple is 5*2 = -10, which is equal to the given number.

CLNG Example 2-5.1

  • In the sixth formula, the number is -25, and the significance is 7. The formula used is =CEILING(A7,B7).

CLNG Example 2-6

Significance multiple is 3*3 = -21 which is nearest to -25 unlike 7*4 =-28.

CLNG Example 2-6.1

Things to Remember

  • In this function, the number always gets larger, i.e., round up always based on the multiple of significance number.
  • The number should not be less than the significance numbers; otherwise, the result would always be zero.
  • This formula does not accept values other than numeric values. If anyone of the supplied argument is non-numeric, then the result will be #VALUE!
  • If the number is positive and the significant number is negative, we will get the error as #NUM! Therefore, if the significant number is negative, then the number also should be negative.

Recommended Articles

This has been a guide to the CEILING Function. Here we discuss the CEILING Formula and how to use the CEILING function along with a practical example and downloadable excel templates. You may also look at these useful functions in excel –

  1. MID Function in Excel
  2. SUM Function in Excel
  3. POWER Function in Excel
  4. SUBSTITUTE Function in Excel 

Primary Sidebar

Footer

Follow us!
  • EDUCBA FacebookEDUCBA TwitterEDUCBA LinkedINEDUCBA Instagram
  • EDUCBA YoutubeEDUCBA CourseraEDUCBA Udemy
APPS
EDUCBA Android AppEDUCBA iOS App
Blog
  • Blog
  • Free Tutorials
  • About us
  • Contact us
  • Log in
Courses
  • Enterprise Solutions
  • Free Courses
  • Explore Programs
  • All Courses
  • All in One Bundles
  • Sign up
Email
  • [email protected]

ISO 10004:2018 & ISO 9001:2015 Certified

© 2025 - EDUCBA. ALL RIGHTS RESERVED. THE CERTIFICATION NAMES ARE THE TRADEMARKS OF THEIR RESPECTIVE OWNERS.

EDUCBA

*Please provide your correct email id. Login details for this Free course will be emailed to you
EDUCBA

*Please provide your correct email id. Login details for this Free course will be emailed to you

EDUCBA

Download CEILING Function Excel Template

EDUCBA
Free Excel Course

Excel functions, formula, charts, formatting creating excel dashboard & others

By continuing above step, you agree to our Terms of Use and Privacy Policy.
*Please provide your correct email id. Login details for this Free course will be emailed to you
EDUCBA

*Please provide your correct email id. Login details for this Free course will be emailed to you
EDUCBA Login

Forgot Password?

EDUCBA

Download CEILING Function Excel Template

EDUCBA

डाउनलोड CEILING Function Excel Template

Loading . . .
Quiz
Question:

Answer:

Quiz Result
Total QuestionsCorrect AnswersWrong AnswersPercentage

Explore 1000+ varieties of Mock tests View more

🚀 Limited Time Offer! - ENROLL NOW