Exell Formule PT ARH
Exell Formule PT ARH
your most used and mastered computer software. However, now as a graduate, practicing real-life
architecture, you have most likely realized that you actually need this spreadsheet and graphing
software you have been trying to avoid for long. After all, there is no better tool you can use to compose
a well-organized and formatted bill of quantities. And, if you are reading this, then you have probably
thought that it is about time you learn more about Excel Formulas.
Excel uses standard operators for equations, such as a plus sign for addition (+), minus sign for
subtraction (-), asterisk for multiplication (*), forward slash for division (/), and caret (^) for exponents.
The key thing to remember when writing formulas for Excel is that all formulas must begin with an
equals sign (=). This is because the cell contains—or is equal to—the formula and its value.
Standard operators
Select the cell where the answer will appear (B4, for example).
Selecting cell B4
Type in the formula you want Excel to calculate (75/250, for example).
Entering formula in B4
Press Enter. The formula will be calculated, and the value will be displayed in the cell.
Result in B4
If the result of a formula is too large to be displayed in a cell, it may appear as pound signs (#######)
instead of a value. This means the column is not wide enough to display the cell content. Simply increase
the column width to show the cell content. Excel might seem a bit confusing in the beginning, but once
you get familiar with the basic formulae, tools, and shortcuts, you will find it quite handy. So, here we
will help you get accustomed to it by providing you with a list of some of the most commonly used and
quite helpful formulae which will get you started and rolling.
1. SUM It sums all the values within a defined range, for a single or multiple rows or columns.
=SUM(A1:F1)
=SUM(A1:A7)
2. MIN It gives the “smallest” value within a defined range. =MIN(A1:F1)
=MIN(A1:A7)
=MAX(A1:A7)
=AVERAGE(A1:A7)
5. COUNT It counts the cells containing numbers within a defined range. =COUNT(A1:F1)
=COUNT(A1:A7)
6. COUNTA It counts all non-empty cells within a defined range, regardless the content.
=COUNTA(A1:F1)
=COUNTA(A1:A7)
=COUNTBLANK(A1:A7)
8. IF It gives one of two different outcomes depending on whether a condition is satisfied or not.
=IF(Condition, “if true value”, “if false value”)
9. SUMIF It operates the SUM only if a given condition is satisfied. =SUMIF(B1:B7, “<100”)
10. SUMIFS It operates the SUM only if multiple conditions are satisfied. =SUMIFS(B1:B7, B1:B7,
“>10”, B1:B7, “<100”)
11. COUNTIF It counts cells with numbers that satisfy the specified conditions only.
=COUNTIF(A1:A7, “>10″)
….