Excel Practice Test

โ–ถ

The Excel greater than or equal to operator, written as >=, is one of the six comparison operators that power conditional logic across every modern spreadsheet. Whenever you need to check whether a sales figure clears a quota, whether a student meets a passing threshold, or whether a date falls on or after a deadline, the >= symbol is the workhorse that returns either TRUE or FALSE. Mastering it unlocks IF statements, COUNTIF formulas, SUMIFS aggregations, conditional formatting rules, and advanced array logic in modern Excel 365.

Excel treats >= as a binary comparison: it evaluates the left-hand value against the right-hand value and returns a Boolean result. The operator works on numbers, dates, times, and even text strings using alphabetical order. For example, =A1>=100 returns TRUE when cell A1 contains 100, 150, or any larger value. The same pattern works inside larger formulas, where the Boolean output drives downstream calculations, lookups, or visual cues like color-coded cells.

Beyond simple comparisons, the >= operator becomes truly powerful when nested inside Excel's conditional functions. Pairing it with IF gives you branching logic. Pairing it with COUNTIF or SUMIF lets you tally or total values that meet a minimum threshold. Combine it with AND or OR to build multi-condition rules. The same operator that looks deceptively simple in cell B2 can drive entire dashboards, validation checks, and automated reports when used skillfully.

One reason >= confuses beginners is the order of the symbols. Excel only recognizes the operator when typed as >= with the greater-than sign first and the equals sign second. Typing =< or => produces a #NAME? error or, worse, silent miscalculation. Understanding this strict syntax โ€” and the surprising way Excel treats blanks, text, and errors during comparison โ€” separates casual users from confident analysts. This guide walks through every nuance you need.

Many people learn the operator alongside other foundational skills, just as they learn the excel definition of ranges, references, and functions. Comparison operators sit at the same conceptual layer: they are not functions but rather built-in language features that you sprinkle throughout your formulas. Once internalized, >= becomes second nature, like punctuation in writing. You will reach for it dozens of times per workbook without conscious thought.

This complete tutorial covers syntax rules, common use cases, troubleshooting, performance considerations, and dozens of real examples spanning finance, HR, inventory, education, and project management. By the end, you will know exactly when to use >= versus alternatives like the MIN function, how to combine it with array formulas in dynamic-array Excel, and how to avoid the silent bugs that plague poorly written conditional logic.

Whether you are preparing for an Excel certification, automating a monthly report, or just trying to flag overdue invoices, the >= operator is essential vocabulary. Read straight through for a full grounding, or jump to specific sections using the navigation sidebar. Examples use Excel 365 syntax but work identically in Excel 2021, 2019, 2016, and Excel for the web. Google Sheets users will find nearly all examples transfer without modification.

Excel Comparison Operators by the Numbers

๐Ÿ“Š
6
Comparison Operators
โšก
2
Characters in >=
โœ…
TRUE/FALSE
Return Values
๐Ÿ”ข
1 / 0
Math Equivalent
๐ŸŒ
All Versions
Compatibility
Try Free Excel Greater Than or Equal To Practice Questions

Syntax and Basic Examples

๐Ÿ“‹ Direct Comparison

Type =A1>=100 in any cell to compare the value in A1 against 100. Excel returns TRUE if A1 is 100 or greater, FALSE otherwise. Works with numeric, date, and text values stored in cells.

๐Ÿ”ข Literal Values

Use =50>=25 to compare two hard-coded numbers โ€” Excel returns TRUE. While rarely useful alone, this pattern appears inside larger nested formulas where intermediate results feed comparisons.

๐Ÿ“Š Cell vs Cell

Use =B2>=A2 to compare two cells directly. Common in variance reports where you flag months that met or exceeded the prior month's number, returning TRUE for non-negative growth.

โœ… Inside Functions

Embed the operator inside IF, COUNTIF, SUMIF, AVERAGEIF, and IFS. Example: =IF(A1>=70,"Pass","Fail") delivers a graded result based on a threshold value you specify.

๐Ÿ”ค Text Comparisons

Excel compares text alphabetically using Unicode order. ="Banana">="Apple" returns TRUE because B comes after A. Useful for sorting validation and alphabetical range checks in name lists.

The IF function is where Excel greater than or equal to truly shines. The classic syntax =IF(logical_test, value_if_true, value_if_false) accepts any expression that resolves to TRUE or FALSE, and >= is one of the most common building blocks. For grading exams, =IF(B2>=70,"Pass","Fail") instantly turns numeric scores into pass/fail labels. For inventory, =IF(C2>=ReorderPoint,"OK","Reorder") flags items needing restock. The pattern scales across thousands of rows with zero modification.

Nested IF statements use >= to build tiered logic. A typical letter-grade formula reads =IF(B2>=90,"A",IF(B2>=80,"B",IF(B2>=70,"C",IF(B2>=60,"D","F")))). Each tier evaluates from high to low, returning the first match. Order matters: if you reversed the tests, every score above 60 would receive a D. This sequencing pitfall trips up many beginners, so always work from the strictest threshold down to the most lenient when chaining >= comparisons.

Excel 365 introduced IFS as a cleaner alternative. The formula =IFS(B2>=90,"A",B2>=80,"B",B2>=70,"C",B2>=60,"D",TRUE,"F") reads top to bottom and returns the value tied to the first TRUE test. The final TRUE acts as a default catch-all. IFS reduces parenthesis sprawl and improves readability significantly. Both formulas produce identical results, but IFS scales better when you have five or more tiers to evaluate sequentially.

Combine >= with AND for multi-condition logic. =IF(AND(B2>=70,C2>=80),"Qualified","Not Qualified") requires both scores to clear their respective thresholds. Use OR for alternative qualifications: =IF(OR(B2>=90,Years>=10),"Promote","Hold") promotes anyone with a top score or a decade of service. These compound tests appear everywhere in HR scoring, loan approvals, eligibility checks, and sales commission tiers across virtually every industry that uses Excel.

Dates work with >= identically to numbers because Excel stores dates as sequential serial numbers behind the scenes. =IF(A1>=DATE(2026,1,1),"This Year","Last Year") flags 2026 records cleanly. Always wrap literal dates in DATE() or reference a cell containing a date to avoid Excel misinterpreting your text. The same applies to times: =IF(B2>=TIMEVALUE("08:00"),"On Time","Late") works for shift logs and attendance tracking systems across many real-world business workflows.

Beware silent bugs caused by blank cells. When A1 is empty, =A1>=0 returns TRUE because Excel treats blanks as zero in numeric contexts. If you want to ignore blanks, wrap the test: =IF(AND(A1<>"",A1>=0),"Valid","Skip"). Likewise, errors in the compared cell propagate: comparing #N/A to anything returns #N/A. Wrap with IFERROR or IFNA when working with VLOOKUP results that may legitimately fail to find matches in your lookup table.

For users coming from colleges of excellence, structured training programs, or self-taught backgrounds, IF combined with >= is usually the first formula that produces a genuine business outcome. It bridges raw data and decisions. Once you understand how the Boolean output of >= feeds the logical_test argument of IF, every other conditional function in Excel โ€” COUNTIF, SUMIF, conditional formatting โ€” becomes intuitive because they all share the same underlying comparison vocabulary.

FREE Excel Basic and Advance Questions and Answers
Practice basic and advanced Excel skills including comparison operators and IF statements.
FREE Excel Formulas Questions and Answers
Test your knowledge of Excel formulas, including >= operator usage and conditional logic.

COUNTIF, SUMIF, and AVERAGEIF with VLOOKUP Excel

๐Ÿ“‹ COUNTIF

COUNTIF tallies the number of cells meeting a criterion expressed as a text string. The formula =COUNTIF(B2:B100,">=70") counts how many scores in B2:B100 are seventy or greater. Notice the operator and value sit together inside quotation marks โ€” this is the syntax COUNTIF requires for comparison operators. Without quotes, Excel returns an error or misreads your intent entirely.

To reference a cell rather than hard-coding a threshold, concatenate: =COUNTIF(B2:B100,">="&D1) where D1 holds the cutoff number. This pattern makes dashboards interactive โ€” change D1 and every COUNTIF result updates instantly. Use COUNTIFS for multiple criteria, such as =COUNTIFS(B2:B100,">=70",C2:C100,"<100") which counts rows where the score is 70 or higher AND another column stays below 100.

๐Ÿ“‹ SUMIF

SUMIF totals values that meet a condition. The formula =SUMIF(A2:A100,">=1000",B2:B100) sums values in B2:B100 wherever the corresponding A column entry is 1000 or greater. The first argument is the range to test, the second is the criterion, and the third is the range to sum. If you omit the third range, SUMIF sums the test range itself, which is useful when testing and summing the same column.

SUMIFS reverses the argument order: the sum_range comes first. =SUMIFS(Revenue,Region,"East",OrderDate,">="&TODAY()-30) totals revenue from the East region for orders placed in the last thirty days. The flexibility of SUMIFS with >= criteria is why it has largely replaced SUMIF in modern Excel work. Each criterion can use a different comparison operator and reference different ranges entirely.

๐Ÿ“‹ AVERAGEIF

AVERAGEIF behaves like SUMIF but returns a mean instead of a total. The formula =AVERAGEIF(B2:B100,">=80") averages only the scores that are 80 or higher, giving you the typical high-performer score. =AVERAGEIFS(Sales,Region,"West",Quarter,">=3") averages western sales for quarters three and four combined, ideal for second-half performance dashboards.

Be cautious: if no cells meet the criterion, AVERAGEIF returns a #DIV/0! error because it tries to divide by zero matches. Wrap with IFERROR for clean output: =IFERROR(AVERAGEIF(B2:B100,">=80"),"No Data"). This pattern is similar to handling bill and ted's excellent adventure cast lookup gaps where missing matches need graceful fallback values rather than ugly error codes visible in production reports.

Using >= Operator vs Alternative Approaches

Pros

  • Simple two-character syntax that is easy to type and read
  • Works identically across numbers, dates, times, and text
  • Compatible with every Excel version since 2007 and Google Sheets
  • Returns clean TRUE/FALSE Boolean values for downstream logic
  • Plays nicely with IF, COUNTIF, SUMIF, AVERAGEIF, and IFS
  • Faster than equivalent MIN, MAX, or conditional array formulas
  • Easy to nest inside AND, OR, and NOT logical functions

Cons

  • Silently treats blank cells as zero in numeric contexts
  • Returns #N/A or #VALUE! when comparing against error cells
  • Text comparisons depend on locale and can surprise users
  • Must be typed as >= exactly โ€” typing => produces errors
  • Inside COUNTIF and SUMIF requires awkward quotation marks
  • Case-insensitive by default โ€” "apple" equals "APPLE" in >=
FREE Excel Functions Questions and Answers
Practice function-based questions including IF, COUNTIF, SUMIF, and AVERAGEIF.
FREE Excel MCQ Questions and Answers
Multiple choice questions covering Excel operators, functions, and formula syntax.

Excel Greater Than or Equal To Implementation Checklist

Type the operator as >= with greater-than sign first, then equals sign
Wrap the comparison in quotes when used inside COUNTIF or SUMIF criteria
Concatenate cell references using & when threshold is dynamic
Use DATE() function to compare against literal dates safely
Handle blank cells with explicit ISBLANK or <>"" checks first
Wrap potential errors with IFERROR or IFNA to keep formulas clean
Order nested IF tests from strictest to most lenient threshold
Prefer IFS over deeply nested IF for five or more tiers of logic
Use AND or OR to combine multiple >= conditions in one formula
Test conditional formatting rules on a small range before applying broadly
Verify text comparisons match your locale's collation expectations
Document complex threshold logic with cell comments for future maintainers
Boolean values are secretly numbers

Excel internally stores TRUE as 1 and FALSE as 0, which means you can multiply or sum the output of >= expressions directly. The formula =SUMPRODUCT((A1:A100>=50)*1) counts rows where column A meets the threshold without needing COUNTIF. This trick powers many advanced array formulas and works in every Excel version, including older releases that lack dynamic arrays.

Most Excel greater than or equal to errors fall into a handful of predictable categories. The most common is the typo =>, which Excel does not recognize as a valid operator. You will either see #NAME?, an unexpected formula result, or Excel may even auto-correct it in ways you did not intend. Always type >= in the correct order. Building muscle memory for this two-character sequence prevents hours of frustrated debugging across spreadsheets containing hundreds of comparison formulas chained together in production workbooks.

Another frequent issue arises when comparing numbers stored as text. If A1 contains the number 100 typed normally and A2 contains "100" imported from a CSV with a leading apostrophe, then =A1>=A2 may behave unexpectedly. Excel compares text alphabetically, so "100" comes before "9" in text comparisons because "1" precedes "9" character by character. Use VALUE(A2) or multiply by 1 to force numeric coercion before applying the >= operator to mixed-type ranges.

Date comparisons fail when one side is genuine date serial and the other is a text string formatted to look like a date. =A1>="2026-01-01" will not work reliably because the right side is text. Wrap with DATEVALUE: =A1>=DATEVALUE("2026-01-01"). Better yet, store the threshold in a cell formatted as a date and reference that cell. Consistent data types throughout your workbook prevent the majority of subtle comparison bugs in production environments where many people edit and refresh data regularly.

Error propagation is sneaky. If A1 contains #N/A (commonly from a failed VLOOKUP), then =A1>=0 returns #N/A rather than TRUE or FALSE. The error cascades through any IF statement that uses it as a logical test, breaking conditional formatting, COUNTIF aggregations, and downstream formulas. Always guard against this with IFERROR(A1>=0,FALSE) or by fixing the upstream lookup first. Modern Excel users prefer XLOOKUP over VLOOKUP partly because it offers a built-in if_not_found argument.

Floating-point precision causes another class of bug. Excel stores numbers as 64-bit floats, so 0.1+0.2 evaluates to 0.30000000000000004 internally. The test =(0.1+0.2)>=0.3 still returns TRUE, but =(0.1+0.2)=0.3 may surprise you by returning FALSE. When dealing with money or measured values, round both sides explicitly: =ROUND(A1,2)>=ROUND(B1,2). This eliminates phantom mismatches that appear only on certain rows of large datasets with calculated values.

Conditional formatting rules using >= sometimes fail to update when you copy and paste data. The rule may reference absolute cells frozen with dollar signs, so dragging the rule range expands it but the comparison anchor stays put. Always check Manage Rules under Conditional Formatting to inspect the actual reference. Use mixed references like $A1 when you want the row to move but the column to lock. Misunderstanding the reference type breaks many real-world conditional formatting deployments across multi-sheet workbooks shared across teams.

Finally, watch for case differences that do not actually matter. Excel treats "Apple" and "apple" as equal in >= comparisons because text comparison is case-insensitive by default. If you need case-sensitive logic, wrap with EXACT: =IF(EXACT(A1,"Apple"),TRUE,FALSE) combined with separate >= checks. This nuance rarely matters for numeric work but becomes critical when validating product codes, user IDs, or any text data where case carries meaning encoded by the source system or business process.

Advanced Excel greater than or equal to patterns unlock genuinely powerful analytics. The SUMPRODUCT array trick mentioned earlier extends to multi-criteria counting without COUNTIFS: =SUMPRODUCT((A1:A100>=Threshold1)*(B1:B100>=Threshold2)) counts rows where both columns clear their bars. The double-negative variant =SUMPRODUCT(--(A1:A100>=50)) is equivalent and slightly faster on very large ranges. These patterns predate dynamic arrays and remain widely used in legacy workbooks that must support Excel 2016 or earlier.

Dynamic array Excel 365 introduced FILTER, which uses >= elegantly. =FILTER(A2:C100,B2:B100>=80) returns every row where column B is at least 80, spilling the matching rows into adjacent cells automatically. Combine with SORT and UNIQUE for fluid reporting: =SORT(FILTER(Data,Score>=Threshold),2,-1) returns qualifying rows sorted descending by column two. These spill formulas eliminate the need for helper columns and pivot tables in many everyday analysis scenarios where you want clean filtered output dynamically.

The LET function lets you name intermediate calculations for readability. =LET(threshold,75,score,B2,IF(score>=threshold,"Pass","Fail")) is identical to a plain IF but easier to maintain. For complex grading scales, LET dramatically reduces repetition: define the threshold once and reference it throughout. LAMBDA takes this further by letting you wrap entire conditional patterns into reusable named functions you can deploy across worksheets like custom user-defined functions without writing any VBA macros at all.

Conditional formatting with >= drives most data visualization in business spreadsheets. Use Home > Conditional Formatting > New Rule > Format only cells that contain > Cell Value > greater than or equal to, then enter your threshold. Color scales and data bars use the operator internally to map values to colors. For traffic-light dashboards, layer three rules with different >= thresholds and matching fill colors. The visual impact transforms raw numeric tables into instantly readable performance reports for executive audiences.

Data validation rules use >= to constrain user input. Select a range, choose Data > Data Validation > Whole Number > greater than or equal to, and enter your minimum. Excel rejects entries below the threshold with a customizable error message. This is essential for forms, intake sheets, and any worksheet shared with users who may enter implausible values. Combine with input messages to guide users proactively rather than relying solely on rejection dialogs that interrupt their workflow.

For statistical work, learning the excellent bath towels approach to outlier detection often involves >= comparisons. =IF(A2>=(AVERAGE($A$2:$A$100)+2*STDEV($A$2:$A$100)),"Outlier","Normal") flags values more than two standard deviations above the mean. The same logic, with <= reversed, catches low outliers. This pattern is standard in quality control, finance, and survey analysis. Always recompute the threshold after data updates so the comparison reflects the current distribution rather than stale historical baselines.

Power Query also supports >= through the Filter Rows step. The generated M code reads each.Score >= 70, returning only matching rows. Power Query is preferable to formulas for very large datasets because it runs once during refresh rather than recalculating with every change. Combine Power Query filtering with Power Pivot DAX measures using filter context for enterprise-grade reporting. Understanding when to use cell formulas versus Power Query versus DAX dramatically improves Excel performance on workbooks with hundreds of thousands of rows.

Test Your Excel Formula Skills with Free Practice Questions

Practical mastery of Excel greater than or equal to comes from building dozens of real formulas, not from reading alone. Start with a simple grading sheet: list ten scores in column A, apply =IF(A1>=70,"Pass","Fail") to column B, then expand to nested IF for letter grades. Add a SUMIF that totals scores above 80 and a COUNTIF that counts failing entries. Within an hour, the syntax becomes automatic. Repetition with progressively harder examples is the single best learning path.

Next, build a budget tracker. List monthly expenses with planned and actual amounts. Use =IF(Actual>=Planned,"Over","Under") to flag overruns. Add conditional formatting that highlights any row where actual exceeds planned by a chosen percentage. Layer a SUMIFS that totals overage across all categories. This single exercise touches every major application of >= and produces a genuinely useful personal finance tool you will keep using long after the practice exercise itself is finished.

For business contexts, build a sales commission calculator. Reps earn 5% on sales up to 10000, 8% on amounts at or above 10000, and 12% on amounts at or above 25000. Use =IF(Sales>=25000,Sales*0.12,IF(Sales>=10000,Sales*0.08,Sales*0.05)) to compute tiered commission. This realistic example demonstrates why thresholds must always be tested from highest to lowest in nested IF statements, and it generalizes to taxes, bonuses, and any tiered pricing structure across many industries.

For data hygiene, learn to combine >= with text and date validation. Build a form intake sheet where Start Date must be at or after today and End Date must be at or after Start Date. Use Data Validation with custom formulas like =A2>=TODAY() and =B2>=A2. Add helpful error messages explaining why an entry was rejected. Well-designed validation prevents downstream errors in reports and analytics, saving hours of cleanup work later when someone runs the monthly summary.

Track your learning by maintaining a personal formula library. Create a workbook with one tab per pattern: simple comparison, nested IF, COUNTIF with cell reference, SUMIFS with date range, conditional formatting examples, data validation rules, FILTER with >=, and SUMPRODUCT counting. Add comments explaining each formula. When you encounter a new problem, scan your library first. This habit accelerates learning faster than any single tutorial because it builds genuinely retrievable knowledge customized to your work.

Finally, take practice quizzes to stress-test your understanding. Timed multiple-choice questions force you to read formulas carefully and predict outputs without running them. Look for quizzes that include trick questions about blank cells, error propagation, and operator order. The discomfort of getting questions wrong cements correct mental models faster than passive reading. Make this a weekly habit during certification prep and the operator will feel as natural as basic arithmetic to you within just a few weeks.

Beyond personal practice, teach the operator to a colleague. Explaining why =A1>=0 returns TRUE for blank cells, or why =A1>=B1 with text behaves unexpectedly, forces you to articulate edge cases clearly. Teaching reveals gaps in your own understanding faster than any other learning activity. Pair this with reviewing other people's formulas in shared workbooks โ€” every time you encounter >= in real spreadsheets, predict the output before checking, then verify. This active engagement builds expert-level fluency over time.

FREE Excel Questions and Answers
Comprehensive Excel certification practice test covering operators, functions, and formulas.
FREE Excel Trivia Questions and Answers
Fun trivia questions to test your Excel knowledge across all skill levels and topics.

Excel Questions and Answers

How do I type greater than or equal to in Excel?

Type the greater-than sign followed immediately by the equals sign with no space between them: >=. For example, =A1>=100 checks whether cell A1 contains 100 or any larger value. The order matters โ€” typing => instead returns a #NAME? error or unexpected results. The operator works identically in Excel 2007 through Excel 365 and in Google Sheets, and accepts numbers, dates, times, and text.

Does Excel have a โ‰ฅ symbol like Word?

No, Excel does not accept the single โ‰ฅ Unicode character in formulas. You must use the two-character combination >= for the operator to work in any formula or function argument. While you can insert โ‰ฅ as text in a cell for documentation purposes using Insert > Symbol, Excel's formula parser only recognizes >= as the comparison operator. This applies to all desktop, web, and mobile versions of Excel without exception.

How do I use >= inside COUNTIF?

Wrap the entire operator and value in quotation marks as a single text string. For example, =COUNTIF(A1:A100,">=50") counts cells in A1:A100 that are 50 or greater. To use a cell reference for the threshold instead of a hard-coded number, concatenate with ampersand: =COUNTIF(A1:A100,">="&D1) where D1 contains the threshold. The same syntax applies to COUNTIFS, SUMIF, SUMIFS, AVERAGEIF, and AVERAGEIFS.

Why does =A1>=0 return TRUE when A1 is empty?

Excel treats truly blank cells as zero in numeric comparisons, so a blank A1 satisfies >=0. To exclude blanks, add an explicit check: =AND(A1<>"",A1>=0). Note that a cell containing an empty text string ("") is different from a truly blank cell and behaves differently in some functions. This blank-as-zero behavior is a common source of bugs in counting and summing formulas, especially in imported data where blanks are common.

Can I use >= with dates in Excel?

Yes, because Excel stores dates as sequential serial numbers. =A1>=DATE(2026,1,1) checks whether the date in A1 is January 1, 2026 or later. Always use the DATE function or reference a cell containing a real date rather than typing a date as text in quotes. Time values also work: =B1>=TIMEVALUE("09:00") flags entries at or after 9 AM. Mixing text dates and serial dates causes silent comparison failures.

What is the difference between > and >= in Excel?

The > operator returns TRUE only when the left value is strictly greater than the right value, excluding equality. The >= operator returns TRUE when the left value is greater than OR exactly equal to the right value. For example, =5>5 returns FALSE while =5>=5 returns TRUE. Choose >= when the threshold itself should qualify, such as a passing grade of exactly 70, and choose > when the boundary should be excluded.

How do I combine >= with AND or OR?

Wrap each comparison inside AND or OR as separate arguments. For example, =AND(A1>=70,A1<=100) tests whether A1 falls in the inclusive range 70 to 100. =OR(A1>=90,B1>=10) is TRUE if either score meets its threshold. You can nest these inside IF: =IF(AND(A1>=70,B1>=80),"Both Pass","At Least One Fail"). This pattern handles compound eligibility rules common in HR, finance, and academic scoring.

Can >= compare text in Excel?

Yes, Excel compares text alphabetically using Unicode order. ="Banana">="Apple" returns TRUE because B comes after A in the alphabet. The comparison is case-insensitive by default, so "apple" equals "APPLE". For case-sensitive logic, use the EXACT function. Text comparison is useful for alphabetical range checks in name lists, but be aware that special characters and accented letters can sort unexpectedly depending on your system locale settings.

Why does my >= formula return #VALUE!?

The most common cause is comparing a number to text that cannot be coerced into a number. For example, =A1>=B1 where A1 is 100 and B1 contains "N/A" produces #VALUE!. Fix this by ensuring both sides are the same data type, using VALUE() to coerce text to numbers, or wrapping the comparison in IFERROR. Errors in either cell, such as #N/A or #DIV/0!, also propagate as #VALUE! through the comparison.

How do I use >= in conditional formatting?

Select the range, click Home > Conditional Formatting > New Rule > Format only cells that contain. In the dropdowns, choose Cell Value, greater than or equal to, then enter your threshold or click a cell reference. Click Format to choose a fill color. For more complex logic, use Use a formula to determine which cells to format and enter =A1>=Threshold using the active cell's reference. The rule then applies relatively across the selected range.
โ–ถ Start Quiz