Higher Education Archives – D. Wilson Contruction
Source
Flat Roof Repair

Flat Roof Repair | Santa Fe Roofing Company | Fix My Roof
Source
%PDF-1.7 %µµµµ 1 0 obj<>/Metadata 100 0 R/ViewerPreferences 101 0 R/PageLabels 102 0 R>> endobj 2 0 obj<> endobj 3 0 obj<>/Font<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]/XObject<>>>/MediaBox[0 0 612 792]/Contents[110 0 R 111 0 R]/Group<>/Tabs/S/StructParents 0>> endobj 5 0 obj<> endobj 6 0 obj<> endobj 7 0 obj[8 0 R] endobj 8 0 obj<> endobj 9 0 obj<> endobj 10 0 obj<> endobj 11 0 obj<> endobj 12 0 obj<> endobj 13 0 obj<> endobj 14 0 obj<> endobj 15 0 obj<> endobj 16 0 obj<> endobj 17 0 obj[18 0 R] endobj 18 0 obj<> endobj 19 0 obj<> endobj 20 0 obj<> endobj 21 0 obj<> endobj 22 0 obj<> endobj 23 0 obj<> endobj 24 0 obj[25 0 R] endobj 25 0 obj<> endobj 26 0 obj<> endobj 27 0 obj<> endobj 28 0 obj<> endobj 29 0 obj<> endobj 30 0 obj<> endobj 31 0 obj[32 0 R] endobj 32 0 obj<> endobj 33 0 obj<> endobj 34 0 obj<> endobj 35 0 obj<> endobj 36 0 obj<> endobj 37 0 obj<>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]/XObject<>>>/MediaBox[0 0 612 792]/Contents[118 0 R 119 0 R]/Group<>/Tabs/S/StructParents 1>> endobj 39 0 obj<> endobj 47 0 obj<> stream x¥UÛNÛ@ýùï}¼Bª ¨¡©QLØÄFÆ©àï{Öë´¦±C]^2»;sιÈ1IÞQ¤-.4{2´Wdð2¬ÉÉEãÉåÌx±Øï(oÃÈIÖw¬%)b¬Ód¤TlËð{ÂÕB¥’asdQ$vÈüδZÍ>§ |>VL|Ì@-s(eðå:Áç½’Ö¤4³!AÄ”Qp3,J ¥ÒB¡0XÊA”ÙíëSÈæM½[6·u³ªj²Yµ WÅSl¤ YvSÔ¡l½±©ñår~âÂ|ï æ2¼:=ôà+«&d×ñç¼¼ÿs¹Eä]õÍòɾâ>Ôé1ûó×r³.Ãü¡*ãçE³®Êî^7ëíí[U?ÞUÕcvV-w[Hj_Bh¢Æ&»*uÕ»~Àoï~¶.6Õª÷0߬ïC/6åAت.¶ÙÅzµ«£{$¶’O©üëÝöy!â¾ÅnÉ8°Ø¯ÎYlÃó¢»ÜP»»³lÞ±õs¾ ÛØsÛ²`ÞÑXJ&ùlÞÍcEm¦ßܦã?åõ>:»$Ä>o¥cåÛÁ’K>D8L·Å¥Ú]KÿR !ÕëGÉ;Ø~¡Iú Ôï{<
Pikes Peak Regional Building Department

- Home
- Contact
- Search
- Accessibility
- Sign Up
- Sign In
” + // “
All new plan submittals received on or after June 30, 2023 must be submitted under the 2023 Pikes Peak Regional Building Code.]]>
“, // buttons: { // Cancel: { // text: “OK”, // btnClass: “button”, // action: function () { // document.cookie = “rbc_changes=” + popupVersion +”; expires=Mon, 1 Jan 2024 00:00:00 UTC; path=/;”; // $(this).confirm(“close”); // AJAXHelper(“/Widget/LogPopupResponse”, // { // “popupType”: “rbc2023”, // “popupVersion”: popupVersion, // “response”: “OK” // } // , false, “”); // } // }, // OK: { // text: “View 2023 RBC”, // btnClass: “btn-success”, // action: function () { // document.cookie = “rbc_changes=” + popupVersion +”; expires=Mon, 1 Jan 2024 00:00:00 UTC; path=/;”; // $(this).confirm(“close”); // AJAXHelper(“/Widget/LogPopupResponse”, // { // “popupType”: “rbc2023”, // “popupVersion”: popupVersion, // “response”: “View” // } // , false, “”); // window.location = “https://www.pprbd.org/File/ByAlias/PPRBC2023Edition”; // } // } // } // }); // } //});
Source
Using IF with AND, OR, and NOT functions in Excel

In Excel, the IF function allows you to make a logical comparison between a value and what you expect by testing for a condition and returning a result if that condition is True or False.
But what if you need to test multiple conditions, where let’s say all conditions need to be True or False (AND), or only one condition needs to be True or False (OR), or if you want to check if a condition does NOT meet your criteria? All 3 functions can be used on their own, but it’s much more common to see them paired with IF functions.
Use the IF function along with AND, OR and NOT to perform multiple evaluations if conditions are True or False.
Syntax
-
IF(AND()) – IF(AND(logical1, [logical2], …), value_if_true, [value_if_false]))
-
IF(OR()) – IF(OR(logical1, [logical2], …), value_if_true, [value_if_false]))
-
IF(NOT()) – IF(NOT(logical1), value_if_true, [value_if_false]))
Argument name |
Description |
|
logical_test (required) |
The condition you want to test. |
|
value_if_true (required) |
The value that you want returned if the result of logical_test is TRUE. |
|
value_if_false (optional) |
The value that you want returned if the result of logical_test is FALSE. |
|
Here are overviews of how to structure AND, OR and NOT functions individually. When you combine each one of them with an IF statement, they read like this:
-
AND – =IF(AND(Something is True, Something else is True), Value if True, Value if False)
-
OR – =IF(OR(Something is True, Something else is True), Value if True, Value if False)
-
NOT – =IF(NOT(Something is True), Value if True, Value if False)
Examples
Following are examples of some common nested IF(AND()), IF(OR()) and IF(NOT()) statements in Excel. The AND and OR functions can support up to 255 individual conditions, but it’s not good practice to use more than a few because complex, nested formulas can get very difficult to build, test and maintain. The NOT function only takes one condition.
Here are the formulas spelled out according to their logic:
Formula |
Description |
---|---|
=IF(AND(A2>0,B2<100),TRUE, FALSE) |
IF A2 (25) is greater than 0, AND B2 (75) is less than 100, then return TRUE, otherwise return FALSE. In this case both conditions are true, so TRUE is returned. |
=IF(AND(A3=”Red”,B3=”Green”),TRUE,FALSE) |
If A3 (“Blue”) = “Red”, AND B3 (“Green”) equals “Green” then return TRUE, otherwise return FALSE. In this case only the first condition is true, so FALSE is returned. |
=IF(OR(A4>0,B4<50),TRUE, FALSE) |
IF A4 (25) is greater than 0, OR B4 (75) is less than 50, then return TRUE, otherwise return FALSE. In this case, only the first condition is TRUE, but since OR only requires one argument to be true the formula returns TRUE. |
=IF(OR(A5=”Red”,B5=”Green”),TRUE,FALSE) |
IF A5 (“Blue”) equals “Red”, OR B5 (“Green”) equals “Green” then return TRUE, otherwise return FALSE. In this case, the second argument is True, so the formula returns TRUE. |
=IF(NOT(A6>50),TRUE,FALSE) |
IF A6 (25) is NOT greater than 50, then return TRUE, otherwise return FALSE. In this case 25 is not greater than 50, so the formula returns TRUE. |
=IF(NOT(A7=”Red”),TRUE,FALSE) |
IF A7 (“Blue”) is NOT equal to “Red”, then return TRUE, otherwise return FALSE. |
Note that all of the examples have a closing parenthesis after their respective conditions are entered. The remaining True/False arguments are then left as part of the outer IF statement. You can also substitute Text or Numeric values for the TRUE/FALSE values to be returned in the examples.
Here are some examples of using AND, OR and NOT to evaluate dates.
Here are the formulas spelled out according to their logic:
Formula |
Description |
---|---|
=IF(A2>B2,TRUE,FALSE) |
IF A2 is greater than B2, return TRUE, otherwise return FALSE. 03/12/14 is greater than 01/01/14, so the formula returns TRUE. |
=IF(AND(A3>B2,A3 |
IF A3 is greater than B2 AND A3 is less than C2, return TRUE, otherwise return FALSE. In this case both arguments are true, so the formula returns TRUE. |
=IF(OR(A4>B2,A4 |
IF A4 is greater than B2 OR A4 is less than B2 + 60, return TRUE, otherwise return FALSE. In this case the first argument is true, but the second is false. Since OR only needs one of the arguments to be true, the formula returns TRUE. If you use the Evaluate Formula Wizard from the Formula tab you’ll see how Excel evaluates the formula. |
=IF(NOT(A5>B2),TRUE,FALSE) |
IF A5 is not greater than B2, then return TRUE, otherwise return FALSE. In this case, A5 is greater than B2, so the formula returns FALSE. |
Using AND, OR and NOT with Conditional Formatting in Excel
In Excel, you can also use AND, OR and NOT to set Conditional Formatting criteria with the formula option. When you do this you can omit the IF function and use AND, OR and NOT on their own.
In Excel, from the Home tab, click Conditional Formatting > New Rule. Next, select the “Use a formula to determine which cells to format” option, enter your formula and apply the format of your choice.
Formula |
Description |
---|---|
=A2>B2 |
If A2 is greater than B2, format the cell, otherwise do nothing. |
=AND(A3>B2,A3 |
If A3 is greater than B2 AND A3 is less than C2, format the cell, otherwise do nothing. |
=OR(A4>B2,A4 |
If A4 is greater than B2 OR A4 is less than B2 plus 60 (days), then format the cell, otherwise do nothing. |
=NOT(A5>B2) |
If A5 is NOT greater than B2, format the cell, otherwise do nothing. In this case A5 is greater than B2, so the result will return FALSE. If you were to change the formula to =NOT(B2>A5) it would return TRUE and the cell would be formatted. |
Note: A common error is to enter your formula into Conditional Formatting without the equals sign (=). If you do this you’ll see that the Conditional Formatting dialog will add the equals sign and quotes to the formula – =”OR(A4>B2,A4
Need more help?
See also
You can always ask an expert in the Excel Tech Community or get support in Communities.
Learn how to use nested functions in a formula
IF function
AND function
OR function
NOT function
Overview of formulas in Excel
How to avoid broken formulas
Detect errors in formulas
Keyboard shortcuts in Excel
Logical functions (reference)
Excel functions (alphabetical)
Excel functions (by category)
Construction Jobs in Texas
D. Wilson Construction Company wants to grow its family of employee-owners in South Texas. Please find our open positions below:
Please send general employment inquiries/resumes to [email protected]
Current Job Opportunities:
McAllen Office:
Please click on the job title to see the job description for each position listed below:
Project Safety Assistant
Project Coordinator
Assistant Project Manager
Superintendent
Assistant Superintendent
San Antonio Office:
Please click on the job title to see the job description for each position listed below:
Assistant Project Manager
We utilize a Culture Index for all possible new candidates. The Culture Index Survey is a tool we are using to help better understand organizational culture, training needs, and how individuals prefer to be managed and communicated with. Please set aside 10-15 minutes, during which you will have no interruptions or distractions, and follow the instructions.
D. Wilson Construction Company is an equal opportunity employer committed to ensuring fair and equal employment to all qualified persons regardless of race, color, religion, sex, national origin, age, disability, or veteran status.
%PDF-1.4 %쏢 %%Invocation: gs -sDEVICE=pdfwrite -dPDFSETTINGS=/printer -dCompatibilityLevel=1.4 -dColorConversionStrategy=/LeaveColorUnchanged -dDownsampleMonoImages=true -dDownsampleGrayImages=true -dDownsampleColorImages=true -dAutoFilterColorImages=true %%+ -dAutoFilterGrayImages=true -dColorImageFilter=/FlateEncode -dGrayImageFilter=/FlateEncode -dCompressFonts=true -dColorImageResolution=150 -dGrayImageResolution=150 -dMonoImageResolution=150 -dNOPAUSE -dQUIET -dBATCH ? ? ? 6 0 obj <> stream x]fq87FvmFرrZ+!P0C2Ѡ Эy:4 ALWTeee>YUW*6}/>_#>B6Fr #ӧ_O|El[p{<;ů.v<=oB<=ŅNj裧?O~}~e~G?xX!`闿U֫ӣ'x<^Y^~zsgw/^> O||/NųۛGo(‘v*ӣ/]>ǬkUnvtswzSQ[[B1myrmͳq/}v}cvoo:C߮zHw/<앗n}X?7k{5k8=|:߽{y-&jգkk1y5 ek?j|(|9=u_|~6]{8ԝc3+pϞ,xyZ}|ӗͯ4Z_^s~oZ|r{c}a)&®7L}їЌr№|цћчоkјxхеху›»—Чжињ6Вг_ї”ЏуД9Y®иС`кЩЖ_|зЎ№{ЏоэХ?ычютЮЏп}пЮOоэФPъ¶µТшѓя‹эпcыыбЅЭыыы{чюЦфfЪrОxд{FъЇVп’цчOп?€хКь”«ь·xрЮGlхЎэчЗч>`e4ЉяюЧ{?Ѕч=пП’ќЛй яp:аѕє»yysmЋБїџrъm”›)7©…эхs“шLe…п[gGБфгџЗ~ь»(Vђп|ю№й¬њЯ!Я–4ЖЪН?цIy:§mЈдРNџRнЩЉ®ж/S™›ЋyсMMnі3Ь©9фг‡?щшб<З+i•aЛЕжс*Щ8ґюМ&я_ЩяфЮџЬРЌЈц›Ёnях›§Z~{м5Э{Ю…?{KюЌэпOЮ&ЌЯ%‡ЖЂ‰‡оэ№qвMэл7»gТры%Ьl]VИећt+mФі”Ы|$•~|dЏЏДVєјq><‹"]±†Ђ=g“А1¦S’^'jЃQнSq><[“л=·ХЦ6лШsLО ¦аЄ}%Рx°Х”±#–V><ыЗ^¶an W'T`TЇЉжШ¦pГа„•¬ј<Аz_eФИДы¶йЉзе№BВ`®Дў+ч0а..{y.›d®[Xж¤Щ/RљБ”НF@µ—Ќµ©ЌIa>B-ёШT/бќ·уP…”жШЁЙ.VШbмЃPf‘ЊИѕлчvеа<‘-]WыљcМжи{Ау'&,Ът°КyІ†SiС,APл…oaґ^«wB±џЋic/+чdАўЧЫ‰ЁaХґКдѓвѕл‰Tk/Ыz…IЩAЙѓ5XьМБ4Щ¶¦N—B@0<_}Ѓ„К#.аћвZ¤g±зћ»=W7yaј5рrжц*А»/ћM€t·њ№„kЖ^F лx9л>ѓЩЏЊЉmddЌ79=HЦ{Цв™е6