GithubHelp home page GithubHelp logo

excel_formulas's Introduction

Excel_formulas

Round

  1. =ROUND(A1, 2)
  2. =ROUND(2.15, 1) Rounds 2.15 to one decimal place 2.2

=ROUND(2.149, 1) Rounds 2.149 to one decimal place 2.1

=ROUND(-1.475, 2) Rounds -1.475 to two decimal places -1.48

=ROUND(21.5, -1) Rounds 21.5 to one decimal place to the left of the decimal point 20

=ROUND(626.3,-3) Rounds 626.3 to the nearest multiple of 1000 1000

=ROUND(1.98,-1) Rounds 1.98 to the nearest multiple of 10 0

=ROUND(-50.55,-2) Rounds -50.55 to the nearest multiple of 100 -100

=check value is no and apply function if value is no =IF(ISERROR(C13/1),"Invalid Data",(B13*C13)/100)

SUM IF not equal to To build the "not equal to" criteria, use the "<>" logical operator.

When a value, either text or number, is hardcoded in the criteria, remember to surround the entire construction with double quotes.

For example, to sum the amounts with shipment other than 3 days, the formula goes as follows:

=SUMIF(C2:C10, "<>3", B2:B10)

To find a total of all the items except Apples, the formula is:

=SUMIF(A2:A10, "<>apples", B2:B10)

When the criterion is in another cell, concatenate the "not equal to" operator and a cell reference like this:

=SUMIF(A2:A10, "<>"&F1, B2:B10)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.