Start with what you need
the sheet to do.
Paste-ready formulas for everyday spreadsheet jobs, each paired with editable data and tested variations.
If cell contains text
Return a label when a cell contains a word or phrase, including partial matches.
=IF(REGEXMATCH(A2,"paid"),"Complete","Open")Open recipe →02 · ConditionsLeave result blank
Keep a formula cell empty until its source cell has data.
=IF(A2="","",B2*C2)Open recipe →03 · Counting & sumsCount unique with criteria
Count distinct entries after limiting rows to a chosen status or group.
=COUNTUNIQUE(FILTER(A2:A,B2:B="Paid"))Open recipe →04 · Counting & sumsSum between two dates
Add amounts whose dates fall inside a start and end date.
=SUMIFS(B2:B,A2:A,">="&E2,A2:A,"<="&F2)Open recipe →05 · Counting & sumsSum multiple sheets
Add the same cell or range from several worksheet tabs.
=SUM(January!B2,February!B2,March!B2)Open recipe →06 · Filtering & lookupFILTER with multiple conditions
Return rows that meet two or more conditions at the same time.
=FILTER(A2:C,B2:B="West",C2:C>=1000)Open recipe →07 · Filtering & lookupFILTER using OR
Return rows when either of two or more conditions is true.
=FILTER(A2:C,(B2:B="West")+(B2:B="East"))Open recipe →08 · Filtering & lookupLast non-empty value
Find the most recent filled value in a column while ignoring blanks.
=LOOKUP(2,1/(A2:A<>""),A2:A)Open recipe →09 · Filtering & lookupLookup from another sheet
Match an ID on one tab and return a field from another tab.
=XLOOKUP(A2,Products!A:A,Products!C:C,"Not found")Open recipe →10 · Filtering & lookupReverse VLOOKUP
Look to the left of the match column by using XLOOKUP or INDEX MATCH.
=XLOOKUP(E2,C2:C,A2:A,"Not found")Open recipe →11 · Filtering & lookupCase-sensitive lookup
Match IDs that differ only by uppercase and lowercase letters.
=INDEX(B2:B,MATCH(TRUE,EXACT(E2,A2:A),0))Open recipe →12 · TextExtract an email address
Pull the first email address out of a sentence, note or imported text block.
=IFERROR(REGEXEXTRACT(A2,"[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,}"),"")Open recipe →13 · TextExtract a URL domain
Turn a full URL into a clean hostname without the protocol, path or query string.
=REGEXEXTRACT(A2,"^(?:https?://)?(?:www\.)?([^/]+)")Open recipe →14 · TextRemove first or last characters
Trim a fixed number of characters from the beginning or end of text.
=RIGHT(A2,LEN(A2)-3)Open recipe →15 · Rows & arraysCalculate a running total
Keep a cumulative sum that grows as new values are added.
=SUM($B$2:B2)Open recipe →16 · Rows & arraysNumber rows automatically
Generate row numbers only when the row contains data.
=ARRAYFORMULA(IF(B2:B="","",ROW(B2:B)-ROW(B2)+1))Open recipe →17 · Rows & arraysCombine multiple columns
Join names, labels or address parts while skipping empty cells.
=TEXTJOIN(" ",TRUE,A2:C2)Open recipe →18 · Rows & arraysDuplicates across two columns
Mark values in one list that also appear in another list.
=IF(COUNTIF($B$2:$B,A2)>0,"Duplicate","")Open recipe →19 · FormattingFormatting from another cell
Apply a format to one cell by testing the value in another column.
=$C2="Overdue"Open recipe →20 · FormattingHighlight row by status
Color every cell in a row when its status column contains a chosen label.
=$D2="Complete"Open recipe →21 · Counting & sumsCount completed invoice rows
Count invoice rows whose status is Complete without counting open or review rows.
=COUNTIF(E2:E,"Complete")Open recipe →22 · Counting & sumsCount open invoice rows
Count invoice rows that still have an Open status.
=COUNTIF(E2:E,"Open")Open recipe →23 · Counting & sumsCount invoice rows by region
Count invoice rows assigned to the North region and change the criterion for another region.
=COUNTIF(B2:B,"North")Open recipe →24 · Counting & sumsCount invoice rows containing text
Count invoice rows whose notes contain the word urgent anywhere in the cell.
=COUNTIF(F2:F,"*urgent*")Open recipe →25 · Counting & sumsCount non-empty invoice rows
Count filled invoice cells while ignoring empty rows.
=COUNTIF(A2:A,"<>")Open recipe →26 · Counting & sumsCount blank invoice row notes
Find how many invoice rows have no note entered.
=COUNTBLANK(F2:F)Open recipe →27 · Counting & sumsCount invoice rows over 1000
Count invoice rows whose Amount is greater than 1,000.
=COUNTIF(C2:C,">1000")Open recipe →28 · Counting & sumsCount invoice rows between amounts
Count invoice rows with Amount values from 500 through 1,500.
=COUNTIFS(C2:C,">=500",C2:C,"<=1500")Open recipe →29 · Counting & sumsCount invoice rows between dates
Count invoice rows dated from July 1 through July 31, 2026.
=COUNTIFS(D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →30 · Counting & sumsCount unique completed invoice rows
Count distinct invoice labels after keeping only Complete rows.
=COUNTUNIQUE(FILTER(A2:A,E2:E="Complete",A2:A<>""))Open recipe →31 · Counting & sumsSum completed invoice rows
Add Amount values only for invoice rows marked Complete.
=SUMIF(E2:E,"Complete",C2:C)Open recipe →32 · Counting & sumsSum invoice rows by region
Add Amount values for invoice rows assigned to North.
=SUMIF(B2:B,"North",C2:C)Open recipe →33 · Counting & sumsSum invoice rows between dates
Add Amount values for invoice rows dated within July 2026.
=SUMIFS(C2:C,D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →34 · Counting & sumsSum invoice rows containing text
Add Amount values when the invoice row note contains urgent.
=SUMIF(F2:F,"*urgent*",C2:C)Open recipe →35 · Counting & sumsAverage completed invoice rows
Calculate the average Amount for invoice rows marked Complete.
=AVERAGEIF(E2:E,"Complete",C2:C)Open recipe →36 · Counting & sumsAverage invoice rows without zeros
Average the Amount column while leaving zero values out of the calculation.
=AVERAGEIF(C2:C,"<>0")Open recipe →37 · Filtering & lookupFilter completed invoice rows
Return every invoice row row whose status is Complete.
=FILTER(A2:F,E2:E="Complete")Open recipe →38 · Filtering & lookupFilter invoice rows with AND
Return invoice rows that are both Complete and assigned to North.
=FILTER(A2:F,E2:E="Complete",B2:B="North")Open recipe →39 · Filtering & lookupFilter invoice rows with OR
Return invoice rows whose status is Complete or Review.
=FILTER(A2:F,(E2:E="Complete")+(E2:E="Review"))Open recipe →40 · Filtering & lookupFilter invoice rows containing text
Return invoice rows whose Notes cell contains urgent.
=FILTER(A2:F,REGEXMATCH(LOWER(F2:F),"urgent"))Open recipe →41 · Filtering & lookupLookup a invoice row amount
Match a invoice label and return its Amount from the same table.
=XLOOKUP(H2,A2:A,C2:C,"Not found")Open recipe →42 · Filtering & lookupLast completed invoice row
Return the final invoice label whose status is Complete.
=XLOOKUP("Complete",E2:E,A2:A,"Not found",0,-1)Open recipe →43 · ConditionsLabel completed invoice rows
Return Done for a Complete invoice row; otherwise return Pending.
=IF(E2="Complete","Done","Pending")Open recipe →44 · ConditionsLeave blank invoice row results blank
Keep the result empty when the invoice cell is blank; otherwise double Amount.
=IF(A2="","",C2*2)Open recipe →45 · Rows & arraysInvoice running total
Create a cumulative Amount total that grows down the invoice rows table.
=SUM($C$2:C2)Open recipe →46 · Counting & sumsCount completed orders
Count orders whose status is Complete without counting open or review rows.
=COUNTIF(E2:E,"Complete")Open recipe →47 · Counting & sumsCount open orders
Count orders that still have an Open status.
=COUNTIF(E2:E,"Open")Open recipe →48 · Counting & sumsCount orders by region
Count orders assigned to the North region and change the criterion for another region.
=COUNTIF(B2:B,"North")Open recipe →49 · Counting & sumsCount orders containing text
Count orders whose notes contain the word urgent anywhere in the cell.
=COUNTIF(F2:F,"*urgent*")Open recipe →50 · Counting & sumsCount non-empty orders
Count filled order cells while ignoring empty rows.
=COUNTIF(A2:A,"<>")Open recipe →51 · Counting & sumsCount blank order notes
Find how many orders have no note entered.
=COUNTBLANK(F2:F)Open recipe →52 · Counting & sumsCount orders over 1000
Count orders whose Amount is greater than 1,000.
=COUNTIF(C2:C,">1000")Open recipe →53 · Counting & sumsCount orders between amounts
Count orders with Amount values from 500 through 1,500.
=COUNTIFS(C2:C,">=500",C2:C,"<=1500")Open recipe →54 · Counting & sumsCount orders between dates
Count orders dated from July 1 through July 31, 2026.
=COUNTIFS(D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →55 · Counting & sumsCount unique completed orders
Count distinct order labels after keeping only Complete rows.
=COUNTUNIQUE(FILTER(A2:A,E2:E="Complete",A2:A<>""))Open recipe →56 · Counting & sumsSum completed orders
Add Amount values only for orders marked Complete.
=SUMIF(E2:E,"Complete",C2:C)Open recipe →57 · Counting & sumsSum orders by region
Add Amount values for orders assigned to North.
=SUMIF(B2:B,"North",C2:C)Open recipe →58 · Counting & sumsSum orders between dates
Add Amount values for orders dated within July 2026.
=SUMIFS(C2:C,D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →59 · Counting & sumsSum orders containing text
Add Amount values when the order note contains urgent.
=SUMIF(F2:F,"*urgent*",C2:C)Open recipe →60 · Counting & sumsAverage completed orders
Calculate the average Amount for orders marked Complete.
=AVERAGEIF(E2:E,"Complete",C2:C)Open recipe →61 · Counting & sumsAverage orders without zeros
Average the Amount column while leaving zero values out of the calculation.
=AVERAGEIF(C2:C,"<>0")Open recipe →62 · Filtering & lookupFilter completed orders
Return every order row whose status is Complete.
=FILTER(A2:F,E2:E="Complete")Open recipe →63 · Filtering & lookupFilter orders with AND
Return orders that are both Complete and assigned to North.
=FILTER(A2:F,E2:E="Complete",B2:B="North")Open recipe →64 · Filtering & lookupFilter orders with OR
Return orders whose status is Complete or Review.
=FILTER(A2:F,(E2:E="Complete")+(E2:E="Review"))Open recipe →65 · Filtering & lookupFilter orders containing text
Return orders whose Notes cell contains urgent.
=FILTER(A2:F,REGEXMATCH(LOWER(F2:F),"urgent"))Open recipe →66 · Filtering & lookupLookup a order amount
Match a order label and return its Amount from the same table.
=XLOOKUP(H2,A2:A,C2:C,"Not found")Open recipe →67 · Filtering & lookupLast completed order
Return the final order label whose status is Complete.
=XLOOKUP("Complete",E2:E,A2:A,"Not found",0,-1)Open recipe →68 · ConditionsLabel completed orders
Return Done for a Complete order; otherwise return Pending.
=IF(E2="Complete","Done","Pending")Open recipe →69 · ConditionsLeave blank order results blank
Keep the result empty when the order cell is blank; otherwise double Amount.
=IF(A2="","",C2*2)Open recipe →70 · Rows & arraysOrder running total
Create a cumulative Amount total that grows down the orders table.
=SUM($C$2:C2)Open recipe →71 · Counting & sumsCount completed expenses
Count expenses whose status is Complete without counting open or review rows.
=COUNTIF(E2:E,"Complete")Open recipe →72 · Counting & sumsCount open expenses
Count expenses that still have an Open status.
=COUNTIF(E2:E,"Open")Open recipe →73 · Counting & sumsCount expenses by region
Count expenses assigned to the North region and change the criterion for another region.
=COUNTIF(B2:B,"North")Open recipe →74 · Counting & sumsCount expenses containing text
Count expenses whose notes contain the word urgent anywhere in the cell.
=COUNTIF(F2:F,"*urgent*")Open recipe →75 · Counting & sumsCount non-empty expenses
Count filled expense cells while ignoring empty rows.
=COUNTIF(A2:A,"<>")Open recipe →76 · Counting & sumsCount blank expense notes
Find how many expenses have no note entered.
=COUNTBLANK(F2:F)Open recipe →77 · Counting & sumsCount expenses over 1000
Count expenses whose Amount is greater than 1,000.
=COUNTIF(C2:C,">1000")Open recipe →78 · Counting & sumsCount expenses between amounts
Count expenses with Amount values from 500 through 1,500.
=COUNTIFS(C2:C,">=500",C2:C,"<=1500")Open recipe →79 · Counting & sumsCount expenses between dates
Count expenses dated from July 1 through July 31, 2026.
=COUNTIFS(D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →80 · Counting & sumsCount unique completed expenses
Count distinct expense labels after keeping only Complete rows.
=COUNTUNIQUE(FILTER(A2:A,E2:E="Complete",A2:A<>""))Open recipe →81 · Counting & sumsSum completed expenses
Add Amount values only for expenses marked Complete.
=SUMIF(E2:E,"Complete",C2:C)Open recipe →82 · Counting & sumsSum expenses by region
Add Amount values for expenses assigned to North.
=SUMIF(B2:B,"North",C2:C)Open recipe →83 · Counting & sumsSum expenses between dates
Add Amount values for expenses dated within July 2026.
=SUMIFS(C2:C,D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →84 · Counting & sumsSum expenses containing text
Add Amount values when the expense note contains urgent.
=SUMIF(F2:F,"*urgent*",C2:C)Open recipe →85 · Counting & sumsAverage completed expenses
Calculate the average Amount for expenses marked Complete.
=AVERAGEIF(E2:E,"Complete",C2:C)Open recipe →86 · Counting & sumsAverage expenses without zeros
Average the Amount column while leaving zero values out of the calculation.
=AVERAGEIF(C2:C,"<>0")Open recipe →87 · Filtering & lookupFilter completed expenses
Return every expense row whose status is Complete.
=FILTER(A2:F,E2:E="Complete")Open recipe →88 · Filtering & lookupFilter expenses with AND
Return expenses that are both Complete and assigned to North.
=FILTER(A2:F,E2:E="Complete",B2:B="North")Open recipe →89 · Filtering & lookupFilter expenses with OR
Return expenses whose status is Complete or Review.
=FILTER(A2:F,(E2:E="Complete")+(E2:E="Review"))Open recipe →90 · Filtering & lookupFilter expenses containing text
Return expenses whose Notes cell contains urgent.
=FILTER(A2:F,REGEXMATCH(LOWER(F2:F),"urgent"))Open recipe →91 · Filtering & lookupLookup a expense amount
Match a expense label and return its Amount from the same table.
=XLOOKUP(H2,A2:A,C2:C,"Not found")Open recipe →92 · Filtering & lookupLast completed expense
Return the final expense label whose status is Complete.
=XLOOKUP("Complete",E2:E,A2:A,"Not found",0,-1)Open recipe →93 · ConditionsLabel completed expenses
Return Done for a Complete expense; otherwise return Pending.
=IF(E2="Complete","Done","Pending")Open recipe →94 · ConditionsLeave blank expense results blank
Keep the result empty when the expense cell is blank; otherwise double Amount.
=IF(A2="","",C2*2)Open recipe →95 · Rows & arraysExpense running total
Create a cumulative Amount total that grows down the expenses table.
=SUM($C$2:C2)Open recipe →96 · Counting & sumsCount completed tasks
Count tasks whose status is Complete without counting open or review rows.
=COUNTIF(E2:E,"Complete")Open recipe →97 · Counting & sumsCount open tasks
Count tasks that still have an Open status.
=COUNTIF(E2:E,"Open")Open recipe →98 · Counting & sumsCount tasks by region
Count tasks assigned to the North region and change the criterion for another region.
=COUNTIF(B2:B,"North")Open recipe →99 · Counting & sumsCount tasks containing text
Count tasks whose notes contain the word urgent anywhere in the cell.
=COUNTIF(F2:F,"*urgent*")Open recipe →100 · Counting & sumsCount non-empty tasks
Count filled task cells while ignoring empty rows.
=COUNTIF(A2:A,"<>")Open recipe →101 · Counting & sumsCount blank task notes
Find how many tasks have no note entered.
=COUNTBLANK(F2:F)Open recipe →102 · Counting & sumsCount tasks over 1000
Count tasks whose Amount is greater than 1,000.
=COUNTIF(C2:C,">1000")Open recipe →103 · Counting & sumsCount tasks between amounts
Count tasks with Amount values from 500 through 1,500.
=COUNTIFS(C2:C,">=500",C2:C,"<=1500")Open recipe →104 · Counting & sumsCount tasks between dates
Count tasks dated from July 1 through July 31, 2026.
=COUNTIFS(D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →105 · Counting & sumsCount unique completed tasks
Count distinct task labels after keeping only Complete rows.
=COUNTUNIQUE(FILTER(A2:A,E2:E="Complete",A2:A<>""))Open recipe →106 · Counting & sumsSum completed tasks
Add Amount values only for tasks marked Complete.
=SUMIF(E2:E,"Complete",C2:C)Open recipe →107 · Counting & sumsSum tasks by region
Add Amount values for tasks assigned to North.
=SUMIF(B2:B,"North",C2:C)Open recipe →108 · Counting & sumsSum tasks between dates
Add Amount values for tasks dated within July 2026.
=SUMIFS(C2:C,D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →109 · Counting & sumsSum tasks containing text
Add Amount values when the task note contains urgent.
=SUMIF(F2:F,"*urgent*",C2:C)Open recipe →110 · Counting & sumsAverage completed tasks
Calculate the average Amount for tasks marked Complete.
=AVERAGEIF(E2:E,"Complete",C2:C)Open recipe →111 · Counting & sumsAverage tasks without zeros
Average the Amount column while leaving zero values out of the calculation.
=AVERAGEIF(C2:C,"<>0")Open recipe →112 · Filtering & lookupFilter completed tasks
Return every task row whose status is Complete.
=FILTER(A2:F,E2:E="Complete")Open recipe →113 · Filtering & lookupFilter tasks with AND
Return tasks that are both Complete and assigned to North.
=FILTER(A2:F,E2:E="Complete",B2:B="North")Open recipe →114 · Filtering & lookupFilter tasks with OR
Return tasks whose status is Complete or Review.
=FILTER(A2:F,(E2:E="Complete")+(E2:E="Review"))Open recipe →115 · Filtering & lookupFilter tasks containing text
Return tasks whose Notes cell contains urgent.
=FILTER(A2:F,REGEXMATCH(LOWER(F2:F),"urgent"))Open recipe →116 · Filtering & lookupLookup a task amount
Match a task label and return its Amount from the same table.
=XLOOKUP(H2,A2:A,C2:C,"Not found")Open recipe →117 · Filtering & lookupLast completed task
Return the final task label whose status is Complete.
=XLOOKUP("Complete",E2:E,A2:A,"Not found",0,-1)Open recipe →118 · ConditionsLabel completed tasks
Return Done for a Complete task; otherwise return Pending.
=IF(E2="Complete","Done","Pending")Open recipe →119 · ConditionsLeave blank task results blank
Keep the result empty when the task cell is blank; otherwise double Amount.
=IF(A2="","",C2*2)Open recipe →120 · Rows & arraysTask running total
Create a cumulative Amount total that grows down the tasks table.
=SUM($C$2:C2)Open recipe →121 · Counting & sumsCount completed projects
Count projects whose status is Complete without counting open or review rows.
=COUNTIF(E2:E,"Complete")Open recipe →122 · Counting & sumsCount open projects
Count projects that still have an Open status.
=COUNTIF(E2:E,"Open")Open recipe →123 · Counting & sumsCount projects by region
Count projects assigned to the North region and change the criterion for another region.
=COUNTIF(B2:B,"North")Open recipe →124 · Counting & sumsCount projects containing text
Count projects whose notes contain the word urgent anywhere in the cell.
=COUNTIF(F2:F,"*urgent*")Open recipe →125 · Counting & sumsCount non-empty projects
Count filled project cells while ignoring empty rows.
=COUNTIF(A2:A,"<>")Open recipe →126 · Counting & sumsCount blank project notes
Find how many projects have no note entered.
=COUNTBLANK(F2:F)Open recipe →127 · Counting & sumsCount projects over 1000
Count projects whose Amount is greater than 1,000.
=COUNTIF(C2:C,">1000")Open recipe →128 · Counting & sumsCount projects between amounts
Count projects with Amount values from 500 through 1,500.
=COUNTIFS(C2:C,">=500",C2:C,"<=1500")Open recipe →129 · Counting & sumsCount projects between dates
Count projects dated from July 1 through July 31, 2026.
=COUNTIFS(D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →130 · Counting & sumsCount unique completed projects
Count distinct project labels after keeping only Complete rows.
=COUNTUNIQUE(FILTER(A2:A,E2:E="Complete",A2:A<>""))Open recipe →131 · Counting & sumsSum completed projects
Add Amount values only for projects marked Complete.
=SUMIF(E2:E,"Complete",C2:C)Open recipe →132 · Counting & sumsSum projects by region
Add Amount values for projects assigned to North.
=SUMIF(B2:B,"North",C2:C)Open recipe →133 · Counting & sumsSum projects between dates
Add Amount values for projects dated within July 2026.
=SUMIFS(C2:C,D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →134 · Counting & sumsSum projects containing text
Add Amount values when the project note contains urgent.
=SUMIF(F2:F,"*urgent*",C2:C)Open recipe →135 · Counting & sumsAverage completed projects
Calculate the average Amount for projects marked Complete.
=AVERAGEIF(E2:E,"Complete",C2:C)Open recipe →136 · Counting & sumsAverage projects without zeros
Average the Amount column while leaving zero values out of the calculation.
=AVERAGEIF(C2:C,"<>0")Open recipe →137 · Filtering & lookupFilter completed projects
Return every project row whose status is Complete.
=FILTER(A2:F,E2:E="Complete")Open recipe →138 · Filtering & lookupFilter projects with AND
Return projects that are both Complete and assigned to North.
=FILTER(A2:F,E2:E="Complete",B2:B="North")Open recipe →139 · Filtering & lookupFilter projects with OR
Return projects whose status is Complete or Review.
=FILTER(A2:F,(E2:E="Complete")+(E2:E="Review"))Open recipe →140 · Filtering & lookupFilter projects containing text
Return projects whose Notes cell contains urgent.
=FILTER(A2:F,REGEXMATCH(LOWER(F2:F),"urgent"))Open recipe →141 · Filtering & lookupLookup a project amount
Match a project label and return its Amount from the same table.
=XLOOKUP(H2,A2:A,C2:C,"Not found")Open recipe →142 · Filtering & lookupLast completed project
Return the final project label whose status is Complete.
=XLOOKUP("Complete",E2:E,A2:A,"Not found",0,-1)Open recipe →143 · ConditionsLabel completed projects
Return Done for a Complete project; otherwise return Pending.
=IF(E2="Complete","Done","Pending")Open recipe →144 · ConditionsLeave blank project results blank
Keep the result empty when the project cell is blank; otherwise double Amount.
=IF(A2="","",C2*2)Open recipe →145 · Rows & arraysProject running total
Create a cumulative Amount total that grows down the projects table.
=SUM($C$2:C2)Open recipe →146 · Counting & sumsCount completed customers
Count customers whose status is Complete without counting open or review rows.
=COUNTIF(E2:E,"Complete")Open recipe →147 · Counting & sumsCount open customers
Count customers that still have an Open status.
=COUNTIF(E2:E,"Open")Open recipe →148 · Counting & sumsCount customers by region
Count customers assigned to the North region and change the criterion for another region.
=COUNTIF(B2:B,"North")Open recipe →149 · Counting & sumsCount customers containing text
Count customers whose notes contain the word urgent anywhere in the cell.
=COUNTIF(F2:F,"*urgent*")Open recipe →150 · Counting & sumsCount non-empty customers
Count filled customer cells while ignoring empty rows.
=COUNTIF(A2:A,"<>")Open recipe →151 · Counting & sumsCount blank customer notes
Find how many customers have no note entered.
=COUNTBLANK(F2:F)Open recipe →152 · Counting & sumsCount customers over 1000
Count customers whose Amount is greater than 1,000.
=COUNTIF(C2:C,">1000")Open recipe →153 · Counting & sumsCount customers between amounts
Count customers with Amount values from 500 through 1,500.
=COUNTIFS(C2:C,">=500",C2:C,"<=1500")Open recipe →154 · Counting & sumsCount customers between dates
Count customers dated from July 1 through July 31, 2026.
=COUNTIFS(D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →155 · Counting & sumsCount unique completed customers
Count distinct customer labels after keeping only Complete rows.
=COUNTUNIQUE(FILTER(A2:A,E2:E="Complete",A2:A<>""))Open recipe →156 · Counting & sumsSum completed customers
Add Amount values only for customers marked Complete.
=SUMIF(E2:E,"Complete",C2:C)Open recipe →157 · Counting & sumsSum customers by region
Add Amount values for customers assigned to North.
=SUMIF(B2:B,"North",C2:C)Open recipe →158 · Counting & sumsSum customers between dates
Add Amount values for customers dated within July 2026.
=SUMIFS(C2:C,D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →159 · Counting & sumsSum customers containing text
Add Amount values when the customer note contains urgent.
=SUMIF(F2:F,"*urgent*",C2:C)Open recipe →160 · Counting & sumsAverage completed customers
Calculate the average Amount for customers marked Complete.
=AVERAGEIF(E2:E,"Complete",C2:C)Open recipe →161 · Counting & sumsAverage customers without zeros
Average the Amount column while leaving zero values out of the calculation.
=AVERAGEIF(C2:C,"<>0")Open recipe →162 · Filtering & lookupFilter completed customers
Return every customer row whose status is Complete.
=FILTER(A2:F,E2:E="Complete")Open recipe →163 · Filtering & lookupFilter customers with AND
Return customers that are both Complete and assigned to North.
=FILTER(A2:F,E2:E="Complete",B2:B="North")Open recipe →164 · Filtering & lookupFilter customers with OR
Return customers whose status is Complete or Review.
=FILTER(A2:F,(E2:E="Complete")+(E2:E="Review"))Open recipe →165 · Filtering & lookupFilter customers containing text
Return customers whose Notes cell contains urgent.
=FILTER(A2:F,REGEXMATCH(LOWER(F2:F),"urgent"))Open recipe →166 · Filtering & lookupLookup a customer amount
Match a customer label and return its Amount from the same table.
=XLOOKUP(H2,A2:A,C2:C,"Not found")Open recipe →167 · Filtering & lookupLast completed customer
Return the final customer label whose status is Complete.
=XLOOKUP("Complete",E2:E,A2:A,"Not found",0,-1)Open recipe →168 · ConditionsLabel completed customers
Return Done for a Complete customer; otherwise return Pending.
=IF(E2="Complete","Done","Pending")Open recipe →169 · ConditionsLeave blank customer results blank
Keep the result empty when the customer cell is blank; otherwise double Amount.
=IF(A2="","",C2*2)Open recipe →170 · Rows & arraysCustomer running total
Create a cumulative Amount total that grows down the customers table.
=SUM($C$2:C2)Open recipe →171 · Counting & sumsCount completed leads
Count leads whose status is Complete without counting open or review rows.
=COUNTIF(E2:E,"Complete")Open recipe →172 · Counting & sumsCount open leads
Count leads that still have an Open status.
=COUNTIF(E2:E,"Open")Open recipe →173 · Counting & sumsCount leads by region
Count leads assigned to the North region and change the criterion for another region.
=COUNTIF(B2:B,"North")Open recipe →174 · Counting & sumsCount leads containing text
Count leads whose notes contain the word urgent anywhere in the cell.
=COUNTIF(F2:F,"*urgent*")Open recipe →175 · Counting & sumsCount non-empty leads
Count filled lead cells while ignoring empty rows.
=COUNTIF(A2:A,"<>")Open recipe →176 · Counting & sumsCount blank lead notes
Find how many leads have no note entered.
=COUNTBLANK(F2:F)Open recipe →177 · Counting & sumsCount leads over 1000
Count leads whose Amount is greater than 1,000.
=COUNTIF(C2:C,">1000")Open recipe →178 · Counting & sumsCount leads between amounts
Count leads with Amount values from 500 through 1,500.
=COUNTIFS(C2:C,">=500",C2:C,"<=1500")Open recipe →179 · Counting & sumsCount leads between dates
Count leads dated from July 1 through July 31, 2026.
=COUNTIFS(D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →180 · Counting & sumsCount unique completed leads
Count distinct lead labels after keeping only Complete rows.
=COUNTUNIQUE(FILTER(A2:A,E2:E="Complete",A2:A<>""))Open recipe →181 · Counting & sumsSum completed leads
Add Amount values only for leads marked Complete.
=SUMIF(E2:E,"Complete",C2:C)Open recipe →182 · Counting & sumsSum leads by region
Add Amount values for leads assigned to North.
=SUMIF(B2:B,"North",C2:C)Open recipe →183 · Counting & sumsSum leads between dates
Add Amount values for leads dated within July 2026.
=SUMIFS(C2:C,D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →184 · Counting & sumsSum leads containing text
Add Amount values when the lead note contains urgent.
=SUMIF(F2:F,"*urgent*",C2:C)Open recipe →185 · Counting & sumsAverage completed leads
Calculate the average Amount for leads marked Complete.
=AVERAGEIF(E2:E,"Complete",C2:C)Open recipe →186 · Counting & sumsAverage leads without zeros
Average the Amount column while leaving zero values out of the calculation.
=AVERAGEIF(C2:C,"<>0")Open recipe →187 · Filtering & lookupFilter completed leads
Return every lead row whose status is Complete.
=FILTER(A2:F,E2:E="Complete")Open recipe →188 · Filtering & lookupFilter leads with AND
Return leads that are both Complete and assigned to North.
=FILTER(A2:F,E2:E="Complete",B2:B="North")Open recipe →189 · Filtering & lookupFilter leads with OR
Return leads whose status is Complete or Review.
=FILTER(A2:F,(E2:E="Complete")+(E2:E="Review"))Open recipe →190 · Filtering & lookupFilter leads containing text
Return leads whose Notes cell contains urgent.
=FILTER(A2:F,REGEXMATCH(LOWER(F2:F),"urgent"))Open recipe →191 · Filtering & lookupLookup a lead amount
Match a lead label and return its Amount from the same table.
=XLOOKUP(H2,A2:A,C2:C,"Not found")Open recipe →192 · Filtering & lookupLast completed lead
Return the final lead label whose status is Complete.
=XLOOKUP("Complete",E2:E,A2:A,"Not found",0,-1)Open recipe →193 · ConditionsLabel completed leads
Return Done for a Complete lead; otherwise return Pending.
=IF(E2="Complete","Done","Pending")Open recipe →194 · ConditionsLeave blank lead results blank
Keep the result empty when the lead cell is blank; otherwise double Amount.
=IF(A2="","",C2*2)Open recipe →195 · Rows & arraysLead running total
Create a cumulative Amount total that grows down the leads table.
=SUM($C$2:C2)Open recipe →196 · Counting & sumsCount completed deals
Count deals whose status is Complete without counting open or review rows.
=COUNTIF(E2:E,"Complete")Open recipe →197 · Counting & sumsCount open deals
Count deals that still have an Open status.
=COUNTIF(E2:E,"Open")Open recipe →198 · Counting & sumsCount deals by region
Count deals assigned to the North region and change the criterion for another region.
=COUNTIF(B2:B,"North")Open recipe →199 · Counting & sumsCount deals containing text
Count deals whose notes contain the word urgent anywhere in the cell.
=COUNTIF(F2:F,"*urgent*")Open recipe →200 · Counting & sumsCount non-empty deals
Count filled deal cells while ignoring empty rows.
=COUNTIF(A2:A,"<>")Open recipe →201 · Counting & sumsCount blank deal notes
Find how many deals have no note entered.
=COUNTBLANK(F2:F)Open recipe →202 · Counting & sumsCount deals over 1000
Count deals whose Amount is greater than 1,000.
=COUNTIF(C2:C,">1000")Open recipe →203 · Counting & sumsCount deals between amounts
Count deals with Amount values from 500 through 1,500.
=COUNTIFS(C2:C,">=500",C2:C,"<=1500")Open recipe →204 · Counting & sumsCount deals between dates
Count deals dated from July 1 through July 31, 2026.
=COUNTIFS(D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →205 · Counting & sumsCount unique completed deals
Count distinct deal labels after keeping only Complete rows.
=COUNTUNIQUE(FILTER(A2:A,E2:E="Complete",A2:A<>""))Open recipe →206 · Counting & sumsSum completed deals
Add Amount values only for deals marked Complete.
=SUMIF(E2:E,"Complete",C2:C)Open recipe →207 · Counting & sumsSum deals by region
Add Amount values for deals assigned to North.
=SUMIF(B2:B,"North",C2:C)Open recipe →208 · Counting & sumsSum deals between dates
Add Amount values for deals dated within July 2026.
=SUMIFS(C2:C,D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →209 · Counting & sumsSum deals containing text
Add Amount values when the deal note contains urgent.
=SUMIF(F2:F,"*urgent*",C2:C)Open recipe →210 · Counting & sumsAverage completed deals
Calculate the average Amount for deals marked Complete.
=AVERAGEIF(E2:E,"Complete",C2:C)Open recipe →211 · Counting & sumsAverage deals without zeros
Average the Amount column while leaving zero values out of the calculation.
=AVERAGEIF(C2:C,"<>0")Open recipe →212 · Filtering & lookupFilter completed deals
Return every deal row whose status is Complete.
=FILTER(A2:F,E2:E="Complete")Open recipe →213 · Filtering & lookupFilter deals with AND
Return deals that are both Complete and assigned to North.
=FILTER(A2:F,E2:E="Complete",B2:B="North")Open recipe →214 · Filtering & lookupFilter deals with OR
Return deals whose status is Complete or Review.
=FILTER(A2:F,(E2:E="Complete")+(E2:E="Review"))Open recipe →215 · Filtering & lookupFilter deals containing text
Return deals whose Notes cell contains urgent.
=FILTER(A2:F,REGEXMATCH(LOWER(F2:F),"urgent"))Open recipe →216 · Filtering & lookupLookup a deal amount
Match a deal label and return its Amount from the same table.
=XLOOKUP(H2,A2:A,C2:C,"Not found")Open recipe →217 · Filtering & lookupLast completed deal
Return the final deal label whose status is Complete.
=XLOOKUP("Complete",E2:E,A2:A,"Not found",0,-1)Open recipe →218 · ConditionsLabel completed deals
Return Done for a Complete deal; otherwise return Pending.
=IF(E2="Complete","Done","Pending")Open recipe →219 · ConditionsLeave blank deal results blank
Keep the result empty when the deal cell is blank; otherwise double Amount.
=IF(A2="","",C2*2)Open recipe →220 · Rows & arraysDeal running total
Create a cumulative Amount total that grows down the deals table.
=SUM($C$2:C2)Open recipe →221 · Counting & sumsCount completed products
Count products whose status is Complete without counting open or review rows.
=COUNTIF(E2:E,"Complete")Open recipe →222 · Counting & sumsCount open products
Count products that still have an Open status.
=COUNTIF(E2:E,"Open")Open recipe →223 · Counting & sumsCount products by region
Count products assigned to the North region and change the criterion for another region.
=COUNTIF(B2:B,"North")Open recipe →224 · Counting & sumsCount products containing text
Count products whose notes contain the word urgent anywhere in the cell.
=COUNTIF(F2:F,"*urgent*")Open recipe →225 · Counting & sumsCount non-empty products
Count filled product cells while ignoring empty rows.
=COUNTIF(A2:A,"<>")Open recipe →226 · Counting & sumsCount blank product notes
Find how many products have no note entered.
=COUNTBLANK(F2:F)Open recipe →227 · Counting & sumsCount products over 1000
Count products whose Amount is greater than 1,000.
=COUNTIF(C2:C,">1000")Open recipe →228 · Counting & sumsCount products between amounts
Count products with Amount values from 500 through 1,500.
=COUNTIFS(C2:C,">=500",C2:C,"<=1500")Open recipe →229 · Counting & sumsCount products between dates
Count products dated from July 1 through July 31, 2026.
=COUNTIFS(D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →230 · Counting & sumsCount unique completed products
Count distinct product labels after keeping only Complete rows.
=COUNTUNIQUE(FILTER(A2:A,E2:E="Complete",A2:A<>""))Open recipe →231 · Counting & sumsSum completed products
Add Amount values only for products marked Complete.
=SUMIF(E2:E,"Complete",C2:C)Open recipe →232 · Counting & sumsSum products by region
Add Amount values for products assigned to North.
=SUMIF(B2:B,"North",C2:C)Open recipe →233 · Counting & sumsSum products between dates
Add Amount values for products dated within July 2026.
=SUMIFS(C2:C,D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →234 · Counting & sumsSum products containing text
Add Amount values when the product note contains urgent.
=SUMIF(F2:F,"*urgent*",C2:C)Open recipe →235 · Counting & sumsAverage completed products
Calculate the average Amount for products marked Complete.
=AVERAGEIF(E2:E,"Complete",C2:C)Open recipe →236 · Counting & sumsAverage products without zeros
Average the Amount column while leaving zero values out of the calculation.
=AVERAGEIF(C2:C,"<>0")Open recipe →237 · Filtering & lookupFilter completed products
Return every product row whose status is Complete.
=FILTER(A2:F,E2:E="Complete")Open recipe →238 · Filtering & lookupFilter products with AND
Return products that are both Complete and assigned to North.
=FILTER(A2:F,E2:E="Complete",B2:B="North")Open recipe →239 · Filtering & lookupFilter products with OR
Return products whose status is Complete or Review.
=FILTER(A2:F,(E2:E="Complete")+(E2:E="Review"))Open recipe →240 · Filtering & lookupFilter products containing text
Return products whose Notes cell contains urgent.
=FILTER(A2:F,REGEXMATCH(LOWER(F2:F),"urgent"))Open recipe →241 · Filtering & lookupLookup a product amount
Match a product label and return its Amount from the same table.
=XLOOKUP(H2,A2:A,C2:C,"Not found")Open recipe →242 · Filtering & lookupLast completed product
Return the final product label whose status is Complete.
=XLOOKUP("Complete",E2:E,A2:A,"Not found",0,-1)Open recipe →243 · ConditionsLabel completed products
Return Done for a Complete product; otherwise return Pending.
=IF(E2="Complete","Done","Pending")Open recipe →244 · ConditionsLeave blank product results blank
Keep the result empty when the product cell is blank; otherwise double Amount.
=IF(A2="","",C2*2)Open recipe →245 · Rows & arraysProduct running total
Create a cumulative Amount total that grows down the products table.
=SUM($C$2:C2)Open recipe →246 · Counting & sumsCount completed inventory items
Count inventory items whose status is Complete without counting open or review rows.
=COUNTIF(E2:E,"Complete")Open recipe →247 · Counting & sumsCount open inventory items
Count inventory items that still have an Open status.
=COUNTIF(E2:E,"Open")Open recipe →248 · Counting & sumsCount inventory items by region
Count inventory items assigned to the North region and change the criterion for another region.
=COUNTIF(B2:B,"North")Open recipe →249 · Counting & sumsCount inventory items containing text
Count inventory items whose notes contain the word urgent anywhere in the cell.
=COUNTIF(F2:F,"*urgent*")Open recipe →250 · Counting & sumsCount non-empty inventory items
Count filled item cells while ignoring empty rows.
=COUNTIF(A2:A,"<>")Open recipe →251 · Counting & sumsCount blank inventory item notes
Find how many inventory items have no note entered.
=COUNTBLANK(F2:F)Open recipe →252 · Counting & sumsCount inventory items over 1000
Count inventory items whose Amount is greater than 1,000.
=COUNTIF(C2:C,">1000")Open recipe →253 · Counting & sumsCount inventory items between amounts
Count inventory items with Amount values from 500 through 1,500.
=COUNTIFS(C2:C,">=500",C2:C,"<=1500")Open recipe →254 · Counting & sumsCount inventory items between dates
Count inventory items dated from July 1 through July 31, 2026.
=COUNTIFS(D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →255 · Counting & sumsCount unique completed inventory items
Count distinct item labels after keeping only Complete rows.
=COUNTUNIQUE(FILTER(A2:A,E2:E="Complete",A2:A<>""))Open recipe →256 · Counting & sumsSum completed inventory items
Add Amount values only for inventory items marked Complete.
=SUMIF(E2:E,"Complete",C2:C)Open recipe →257 · Counting & sumsSum inventory items by region
Add Amount values for inventory items assigned to North.
=SUMIF(B2:B,"North",C2:C)Open recipe →258 · Counting & sumsSum inventory items between dates
Add Amount values for inventory items dated within July 2026.
=SUMIFS(C2:C,D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →259 · Counting & sumsSum inventory items containing text
Add Amount values when the inventory item note contains urgent.
=SUMIF(F2:F,"*urgent*",C2:C)Open recipe →260 · Counting & sumsAverage completed inventory items
Calculate the average Amount for inventory items marked Complete.
=AVERAGEIF(E2:E,"Complete",C2:C)Open recipe →261 · Counting & sumsAverage inventory items without zeros
Average the Amount column while leaving zero values out of the calculation.
=AVERAGEIF(C2:C,"<>0")Open recipe →262 · Filtering & lookupFilter completed inventory items
Return every inventory item row whose status is Complete.
=FILTER(A2:F,E2:E="Complete")Open recipe →263 · Filtering & lookupFilter inventory items with AND
Return inventory items that are both Complete and assigned to North.
=FILTER(A2:F,E2:E="Complete",B2:B="North")Open recipe →264 · Filtering & lookupFilter inventory items with OR
Return inventory items whose status is Complete or Review.
=FILTER(A2:F,(E2:E="Complete")+(E2:E="Review"))Open recipe →265 · Filtering & lookupFilter inventory items containing text
Return inventory items whose Notes cell contains urgent.
=FILTER(A2:F,REGEXMATCH(LOWER(F2:F),"urgent"))Open recipe →266 · Filtering & lookupLookup a inventory item amount
Match a item label and return its Amount from the same table.
=XLOOKUP(H2,A2:A,C2:C,"Not found")Open recipe →267 · Filtering & lookupLast completed inventory item
Return the final item label whose status is Complete.
=XLOOKUP("Complete",E2:E,A2:A,"Not found",0,-1)Open recipe →268 · ConditionsLabel completed inventory items
Return Done for a Complete inventory item; otherwise return Pending.
=IF(E2="Complete","Done","Pending")Open recipe →269 · ConditionsLeave blank inventory item results blank
Keep the result empty when the item cell is blank; otherwise double Amount.
=IF(A2="","",C2*2)Open recipe →270 · Rows & arraysItem running total
Create a cumulative Amount total that grows down the inventory items table.
=SUM($C$2:C2)Open recipe →271 · Counting & sumsCount completed shipments
Count shipments whose status is Complete without counting open or review rows.
=COUNTIF(E2:E,"Complete")Open recipe →272 · Counting & sumsCount open shipments
Count shipments that still have an Open status.
=COUNTIF(E2:E,"Open")Open recipe →273 · Counting & sumsCount shipments by region
Count shipments assigned to the North region and change the criterion for another region.
=COUNTIF(B2:B,"North")Open recipe →274 · Counting & sumsCount shipments containing text
Count shipments whose notes contain the word urgent anywhere in the cell.
=COUNTIF(F2:F,"*urgent*")Open recipe →275 · Counting & sumsCount non-empty shipments
Count filled shipment cells while ignoring empty rows.
=COUNTIF(A2:A,"<>")Open recipe →276 · Counting & sumsCount blank shipment notes
Find how many shipments have no note entered.
=COUNTBLANK(F2:F)Open recipe →277 · Counting & sumsCount shipments over 1000
Count shipments whose Amount is greater than 1,000.
=COUNTIF(C2:C,">1000")Open recipe →278 · Counting & sumsCount shipments between amounts
Count shipments with Amount values from 500 through 1,500.
=COUNTIFS(C2:C,">=500",C2:C,"<=1500")Open recipe →279 · Counting & sumsCount shipments between dates
Count shipments dated from July 1 through July 31, 2026.
=COUNTIFS(D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →280 · Counting & sumsCount unique completed shipments
Count distinct shipment labels after keeping only Complete rows.
=COUNTUNIQUE(FILTER(A2:A,E2:E="Complete",A2:A<>""))Open recipe →281 · Counting & sumsSum completed shipments
Add Amount values only for shipments marked Complete.
=SUMIF(E2:E,"Complete",C2:C)Open recipe →282 · Counting & sumsSum shipments by region
Add Amount values for shipments assigned to North.
=SUMIF(B2:B,"North",C2:C)Open recipe →283 · Counting & sumsSum shipments between dates
Add Amount values for shipments dated within July 2026.
=SUMIFS(C2:C,D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →284 · Counting & sumsSum shipments containing text
Add Amount values when the shipment note contains urgent.
=SUMIF(F2:F,"*urgent*",C2:C)Open recipe →285 · Counting & sumsAverage completed shipments
Calculate the average Amount for shipments marked Complete.
=AVERAGEIF(E2:E,"Complete",C2:C)Open recipe →286 · Counting & sumsAverage shipments without zeros
Average the Amount column while leaving zero values out of the calculation.
=AVERAGEIF(C2:C,"<>0")Open recipe →287 · Filtering & lookupFilter completed shipments
Return every shipment row whose status is Complete.
=FILTER(A2:F,E2:E="Complete")Open recipe →288 · Filtering & lookupFilter shipments with AND
Return shipments that are both Complete and assigned to North.
=FILTER(A2:F,E2:E="Complete",B2:B="North")Open recipe →289 · Filtering & lookupFilter shipments with OR
Return shipments whose status is Complete or Review.
=FILTER(A2:F,(E2:E="Complete")+(E2:E="Review"))Open recipe →290 · Filtering & lookupFilter shipments containing text
Return shipments whose Notes cell contains urgent.
=FILTER(A2:F,REGEXMATCH(LOWER(F2:F),"urgent"))Open recipe →291 · Filtering & lookupLookup a shipment amount
Match a shipment label and return its Amount from the same table.
=XLOOKUP(H2,A2:A,C2:C,"Not found")Open recipe →292 · Filtering & lookupLast completed shipment
Return the final shipment label whose status is Complete.
=XLOOKUP("Complete",E2:E,A2:A,"Not found",0,-1)Open recipe →293 · ConditionsLabel completed shipments
Return Done for a Complete shipment; otherwise return Pending.
=IF(E2="Complete","Done","Pending")Open recipe →294 · ConditionsLeave blank shipment results blank
Keep the result empty when the shipment cell is blank; otherwise double Amount.
=IF(A2="","",C2*2)Open recipe →295 · Rows & arraysShipment running total
Create a cumulative Amount total that grows down the shipments table.
=SUM($C$2:C2)Open recipe →296 · Counting & sumsCount completed support tickets
Count support tickets whose status is Complete without counting open or review rows.
=COUNTIF(E2:E,"Complete")Open recipe →297 · Counting & sumsCount open support tickets
Count support tickets that still have an Open status.
=COUNTIF(E2:E,"Open")Open recipe →298 · Counting & sumsCount support tickets by region
Count support tickets assigned to the North region and change the criterion for another region.
=COUNTIF(B2:B,"North")Open recipe →299 · Counting & sumsCount support tickets containing text
Count support tickets whose notes contain the word urgent anywhere in the cell.
=COUNTIF(F2:F,"*urgent*")Open recipe →300 · Counting & sumsCount non-empty support tickets
Count filled ticket cells while ignoring empty rows.
=COUNTIF(A2:A,"<>")Open recipe →301 · Counting & sumsCount blank support ticket notes
Find how many support tickets have no note entered.
=COUNTBLANK(F2:F)Open recipe →302 · Counting & sumsCount support tickets over 1000
Count support tickets whose Amount is greater than 1,000.
=COUNTIF(C2:C,">1000")Open recipe →303 · Counting & sumsCount support tickets between amounts
Count support tickets with Amount values from 500 through 1,500.
=COUNTIFS(C2:C,">=500",C2:C,"<=1500")Open recipe →304 · Counting & sumsCount support tickets between dates
Count support tickets dated from July 1 through July 31, 2026.
=COUNTIFS(D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →305 · Counting & sumsCount unique completed support tickets
Count distinct ticket labels after keeping only Complete rows.
=COUNTUNIQUE(FILTER(A2:A,E2:E="Complete",A2:A<>""))Open recipe →306 · Counting & sumsSum completed support tickets
Add Amount values only for support tickets marked Complete.
=SUMIF(E2:E,"Complete",C2:C)Open recipe →307 · Counting & sumsSum support tickets by region
Add Amount values for support tickets assigned to North.
=SUMIF(B2:B,"North",C2:C)Open recipe →308 · Counting & sumsSum support tickets between dates
Add Amount values for support tickets dated within July 2026.
=SUMIFS(C2:C,D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →309 · Counting & sumsSum support tickets containing text
Add Amount values when the support ticket note contains urgent.
=SUMIF(F2:F,"*urgent*",C2:C)Open recipe →310 · Counting & sumsAverage completed support tickets
Calculate the average Amount for support tickets marked Complete.
=AVERAGEIF(E2:E,"Complete",C2:C)Open recipe →311 · Counting & sumsAverage support tickets without zeros
Average the Amount column while leaving zero values out of the calculation.
=AVERAGEIF(C2:C,"<>0")Open recipe →312 · Filtering & lookupFilter completed support tickets
Return every support ticket row whose status is Complete.
=FILTER(A2:F,E2:E="Complete")Open recipe →313 · Filtering & lookupFilter support tickets with AND
Return support tickets that are both Complete and assigned to North.
=FILTER(A2:F,E2:E="Complete",B2:B="North")Open recipe →314 · Filtering & lookupFilter support tickets with OR
Return support tickets whose status is Complete or Review.
=FILTER(A2:F,(E2:E="Complete")+(E2:E="Review"))Open recipe →315 · Filtering & lookupFilter support tickets containing text
Return support tickets whose Notes cell contains urgent.
=FILTER(A2:F,REGEXMATCH(LOWER(F2:F),"urgent"))Open recipe →316 · Filtering & lookupLookup a support ticket amount
Match a ticket label and return its Amount from the same table.
=XLOOKUP(H2,A2:A,C2:C,"Not found")Open recipe →317 · Filtering & lookupLast completed support ticket
Return the final ticket label whose status is Complete.
=XLOOKUP("Complete",E2:E,A2:A,"Not found",0,-1)Open recipe →318 · ConditionsLabel completed support tickets
Return Done for a Complete support ticket; otherwise return Pending.
=IF(E2="Complete","Done","Pending")Open recipe →319 · ConditionsLeave blank support ticket results blank
Keep the result empty when the ticket cell is blank; otherwise double Amount.
=IF(A2="","",C2*2)Open recipe →320 · Rows & arraysTicket running total
Create a cumulative Amount total that grows down the support tickets table.
=SUM($C$2:C2)Open recipe →321 · Counting & sumsCount completed employees
Count employees whose status is Complete without counting open or review rows.
=COUNTIF(E2:E,"Complete")Open recipe →322 · Counting & sumsCount open employees
Count employees that still have an Open status.
=COUNTIF(E2:E,"Open")Open recipe →323 · Counting & sumsCount employees by region
Count employees assigned to the North region and change the criterion for another region.
=COUNTIF(B2:B,"North")Open recipe →324 · Counting & sumsCount employees containing text
Count employees whose notes contain the word urgent anywhere in the cell.
=COUNTIF(F2:F,"*urgent*")Open recipe →325 · Counting & sumsCount non-empty employees
Count filled employee cells while ignoring empty rows.
=COUNTIF(A2:A,"<>")Open recipe →326 · Counting & sumsCount blank employee notes
Find how many employees have no note entered.
=COUNTBLANK(F2:F)Open recipe →327 · Counting & sumsCount employees over 1000
Count employees whose Amount is greater than 1,000.
=COUNTIF(C2:C,">1000")Open recipe →328 · Counting & sumsCount employees between amounts
Count employees with Amount values from 500 through 1,500.
=COUNTIFS(C2:C,">=500",C2:C,"<=1500")Open recipe →329 · Counting & sumsCount employees between dates
Count employees dated from July 1 through July 31, 2026.
=COUNTIFS(D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →330 · Counting & sumsCount unique completed employees
Count distinct employee labels after keeping only Complete rows.
=COUNTUNIQUE(FILTER(A2:A,E2:E="Complete",A2:A<>""))Open recipe →331 · Counting & sumsSum completed employees
Add Amount values only for employees marked Complete.
=SUMIF(E2:E,"Complete",C2:C)Open recipe →332 · Counting & sumsSum employees by region
Add Amount values for employees assigned to North.
=SUMIF(B2:B,"North",C2:C)Open recipe →333 · Counting & sumsSum employees between dates
Add Amount values for employees dated within July 2026.
=SUMIFS(C2:C,D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →334 · Counting & sumsSum employees containing text
Add Amount values when the employee note contains urgent.
=SUMIF(F2:F,"*urgent*",C2:C)Open recipe →335 · Counting & sumsAverage completed employees
Calculate the average Amount for employees marked Complete.
=AVERAGEIF(E2:E,"Complete",C2:C)Open recipe →336 · Counting & sumsAverage employees without zeros
Average the Amount column while leaving zero values out of the calculation.
=AVERAGEIF(C2:C,"<>0")Open recipe →337 · Filtering & lookupFilter completed employees
Return every employee row whose status is Complete.
=FILTER(A2:F,E2:E="Complete")Open recipe →338 · Filtering & lookupFilter employees with AND
Return employees that are both Complete and assigned to North.
=FILTER(A2:F,E2:E="Complete",B2:B="North")Open recipe →339 · Filtering & lookupFilter employees with OR
Return employees whose status is Complete or Review.
=FILTER(A2:F,(E2:E="Complete")+(E2:E="Review"))Open recipe →340 · Filtering & lookupFilter employees containing text
Return employees whose Notes cell contains urgent.
=FILTER(A2:F,REGEXMATCH(LOWER(F2:F),"urgent"))Open recipe →341 · Filtering & lookupLookup a employee amount
Match a employee label and return its Amount from the same table.
=XLOOKUP(H2,A2:A,C2:C,"Not found")Open recipe →342 · Filtering & lookupLast completed employee
Return the final employee label whose status is Complete.
=XLOOKUP("Complete",E2:E,A2:A,"Not found",0,-1)Open recipe →343 · ConditionsLabel completed employees
Return Done for a Complete employee; otherwise return Pending.
=IF(E2="Complete","Done","Pending")Open recipe →344 · ConditionsLeave blank employee results blank
Keep the result empty when the employee cell is blank; otherwise double Amount.
=IF(A2="","",C2*2)Open recipe →345 · Rows & arraysEmployee running total
Create a cumulative Amount total that grows down the employees table.
=SUM($C$2:C2)Open recipe →346 · Counting & sumsCount completed applicants
Count applicants whose status is Complete without counting open or review rows.
=COUNTIF(E2:E,"Complete")Open recipe →347 · Counting & sumsCount open applicants
Count applicants that still have an Open status.
=COUNTIF(E2:E,"Open")Open recipe →348 · Counting & sumsCount applicants by region
Count applicants assigned to the North region and change the criterion for another region.
=COUNTIF(B2:B,"North")Open recipe →349 · Counting & sumsCount applicants containing text
Count applicants whose notes contain the word urgent anywhere in the cell.
=COUNTIF(F2:F,"*urgent*")Open recipe →350 · Counting & sumsCount non-empty applicants
Count filled applicant cells while ignoring empty rows.
=COUNTIF(A2:A,"<>")Open recipe →351 · Counting & sumsCount blank applicant notes
Find how many applicants have no note entered.
=COUNTBLANK(F2:F)Open recipe →352 · Counting & sumsCount applicants over 1000
Count applicants whose Amount is greater than 1,000.
=COUNTIF(C2:C,">1000")Open recipe →353 · Counting & sumsCount applicants between amounts
Count applicants with Amount values from 500 through 1,500.
=COUNTIFS(C2:C,">=500",C2:C,"<=1500")Open recipe →354 · Counting & sumsCount applicants between dates
Count applicants dated from July 1 through July 31, 2026.
=COUNTIFS(D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →355 · Counting & sumsCount unique completed applicants
Count distinct applicant labels after keeping only Complete rows.
=COUNTUNIQUE(FILTER(A2:A,E2:E="Complete",A2:A<>""))Open recipe →356 · Counting & sumsSum completed applicants
Add Amount values only for applicants marked Complete.
=SUMIF(E2:E,"Complete",C2:C)Open recipe →357 · Counting & sumsSum applicants by region
Add Amount values for applicants assigned to North.
=SUMIF(B2:B,"North",C2:C)Open recipe →358 · Counting & sumsSum applicants between dates
Add Amount values for applicants dated within July 2026.
=SUMIFS(C2:C,D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →359 · Counting & sumsSum applicants containing text
Add Amount values when the applicant note contains urgent.
=SUMIF(F2:F,"*urgent*",C2:C)Open recipe →360 · Counting & sumsAverage completed applicants
Calculate the average Amount for applicants marked Complete.
=AVERAGEIF(E2:E,"Complete",C2:C)Open recipe →361 · Counting & sumsAverage applicants without zeros
Average the Amount column while leaving zero values out of the calculation.
=AVERAGEIF(C2:C,"<>0")Open recipe →362 · Filtering & lookupFilter completed applicants
Return every applicant row whose status is Complete.
=FILTER(A2:F,E2:E="Complete")Open recipe →363 · Filtering & lookupFilter applicants with AND
Return applicants that are both Complete and assigned to North.
=FILTER(A2:F,E2:E="Complete",B2:B="North")Open recipe →364 · Filtering & lookupFilter applicants with OR
Return applicants whose status is Complete or Review.
=FILTER(A2:F,(E2:E="Complete")+(E2:E="Review"))Open recipe →365 · Filtering & lookupFilter applicants containing text
Return applicants whose Notes cell contains urgent.
=FILTER(A2:F,REGEXMATCH(LOWER(F2:F),"urgent"))Open recipe →366 · Filtering & lookupLookup a applicant amount
Match a applicant label and return its Amount from the same table.
=XLOOKUP(H2,A2:A,C2:C,"Not found")Open recipe →367 · Filtering & lookupLast completed applicant
Return the final applicant label whose status is Complete.
=XLOOKUP("Complete",E2:E,A2:A,"Not found",0,-1)Open recipe →368 · ConditionsLabel completed applicants
Return Done for a Complete applicant; otherwise return Pending.
=IF(E2="Complete","Done","Pending")Open recipe →369 · ConditionsLeave blank applicant results blank
Keep the result empty when the applicant cell is blank; otherwise double Amount.
=IF(A2="","",C2*2)Open recipe →370 · Rows & arraysApplicant running total
Create a cumulative Amount total that grows down the applicants table.
=SUM($C$2:C2)Open recipe →371 · Counting & sumsCount completed students
Count students whose status is Complete without counting open or review rows.
=COUNTIF(E2:E,"Complete")Open recipe →372 · Counting & sumsCount open students
Count students that still have an Open status.
=COUNTIF(E2:E,"Open")Open recipe →373 · Counting & sumsCount students by region
Count students assigned to the North region and change the criterion for another region.
=COUNTIF(B2:B,"North")Open recipe →374 · Counting & sumsCount students containing text
Count students whose notes contain the word urgent anywhere in the cell.
=COUNTIF(F2:F,"*urgent*")Open recipe →375 · Counting & sumsCount non-empty students
Count filled student cells while ignoring empty rows.
=COUNTIF(A2:A,"<>")Open recipe →376 · Counting & sumsCount blank student notes
Find how many students have no note entered.
=COUNTBLANK(F2:F)Open recipe →377 · Counting & sumsCount students over 1000
Count students whose Amount is greater than 1,000.
=COUNTIF(C2:C,">1000")Open recipe →378 · Counting & sumsCount students between amounts
Count students with Amount values from 500 through 1,500.
=COUNTIFS(C2:C,">=500",C2:C,"<=1500")Open recipe →379 · Counting & sumsCount students between dates
Count students dated from July 1 through July 31, 2026.
=COUNTIFS(D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →380 · Counting & sumsCount unique completed students
Count distinct student labels after keeping only Complete rows.
=COUNTUNIQUE(FILTER(A2:A,E2:E="Complete",A2:A<>""))Open recipe →381 · Counting & sumsSum completed students
Add Amount values only for students marked Complete.
=SUMIF(E2:E,"Complete",C2:C)Open recipe →382 · Counting & sumsSum students by region
Add Amount values for students assigned to North.
=SUMIF(B2:B,"North",C2:C)Open recipe →383 · Counting & sumsSum students between dates
Add Amount values for students dated within July 2026.
=SUMIFS(C2:C,D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →384 · Counting & sumsSum students containing text
Add Amount values when the student note contains urgent.
=SUMIF(F2:F,"*urgent*",C2:C)Open recipe →385 · Counting & sumsAverage completed students
Calculate the average Amount for students marked Complete.
=AVERAGEIF(E2:E,"Complete",C2:C)Open recipe →386 · Counting & sumsAverage students without zeros
Average the Amount column while leaving zero values out of the calculation.
=AVERAGEIF(C2:C,"<>0")Open recipe →387 · Filtering & lookupFilter completed students
Return every student row whose status is Complete.
=FILTER(A2:F,E2:E="Complete")Open recipe →388 · Filtering & lookupFilter students with AND
Return students that are both Complete and assigned to North.
=FILTER(A2:F,E2:E="Complete",B2:B="North")Open recipe →389 · Filtering & lookupFilter students with OR
Return students whose status is Complete or Review.
=FILTER(A2:F,(E2:E="Complete")+(E2:E="Review"))Open recipe →390 · Filtering & lookupFilter students containing text
Return students whose Notes cell contains urgent.
=FILTER(A2:F,REGEXMATCH(LOWER(F2:F),"urgent"))Open recipe →391 · Filtering & lookupLookup a student amount
Match a student label and return its Amount from the same table.
=XLOOKUP(H2,A2:A,C2:C,"Not found")Open recipe →392 · Filtering & lookupLast completed student
Return the final student label whose status is Complete.
=XLOOKUP("Complete",E2:E,A2:A,"Not found",0,-1)Open recipe →393 · ConditionsLabel completed students
Return Done for a Complete student; otherwise return Pending.
=IF(E2="Complete","Done","Pending")Open recipe →394 · ConditionsLeave blank student results blank
Keep the result empty when the student cell is blank; otherwise double Amount.
=IF(A2="","",C2*2)Open recipe →395 · Rows & arraysStudent running total
Create a cumulative Amount total that grows down the students table.
=SUM($C$2:C2)Open recipe →396 · Counting & sumsCount completed assignments
Count assignments whose status is Complete without counting open or review rows.
=COUNTIF(E2:E,"Complete")Open recipe →397 · Counting & sumsCount open assignments
Count assignments that still have an Open status.
=COUNTIF(E2:E,"Open")Open recipe →398 · Counting & sumsCount assignments by region
Count assignments assigned to the North region and change the criterion for another region.
=COUNTIF(B2:B,"North")Open recipe →399 · Counting & sumsCount assignments containing text
Count assignments whose notes contain the word urgent anywhere in the cell.
=COUNTIF(F2:F,"*urgent*")Open recipe →400 · Counting & sumsCount non-empty assignments
Count filled assignment cells while ignoring empty rows.
=COUNTIF(A2:A,"<>")Open recipe →401 · Counting & sumsCount blank assignment notes
Find how many assignments have no note entered.
=COUNTBLANK(F2:F)Open recipe →402 · Counting & sumsCount assignments over 1000
Count assignments whose Amount is greater than 1,000.
=COUNTIF(C2:C,">1000")Open recipe →403 · Counting & sumsCount assignments between amounts
Count assignments with Amount values from 500 through 1,500.
=COUNTIFS(C2:C,">=500",C2:C,"<=1500")Open recipe →404 · Counting & sumsCount assignments between dates
Count assignments dated from July 1 through July 31, 2026.
=COUNTIFS(D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →405 · Counting & sumsCount unique completed assignments
Count distinct assignment labels after keeping only Complete rows.
=COUNTUNIQUE(FILTER(A2:A,E2:E="Complete",A2:A<>""))Open recipe →406 · Counting & sumsSum completed assignments
Add Amount values only for assignments marked Complete.
=SUMIF(E2:E,"Complete",C2:C)Open recipe →407 · Counting & sumsSum assignments by region
Add Amount values for assignments assigned to North.
=SUMIF(B2:B,"North",C2:C)Open recipe →408 · Counting & sumsSum assignments between dates
Add Amount values for assignments dated within July 2026.
=SUMIFS(C2:C,D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →409 · Counting & sumsSum assignments containing text
Add Amount values when the assignment note contains urgent.
=SUMIF(F2:F,"*urgent*",C2:C)Open recipe →410 · Counting & sumsAverage completed assignments
Calculate the average Amount for assignments marked Complete.
=AVERAGEIF(E2:E,"Complete",C2:C)Open recipe →411 · Counting & sumsAverage assignments without zeros
Average the Amount column while leaving zero values out of the calculation.
=AVERAGEIF(C2:C,"<>0")Open recipe →412 · Filtering & lookupFilter completed assignments
Return every assignment row whose status is Complete.
=FILTER(A2:F,E2:E="Complete")Open recipe →413 · Filtering & lookupFilter assignments with AND
Return assignments that are both Complete and assigned to North.
=FILTER(A2:F,E2:E="Complete",B2:B="North")Open recipe →414 · Filtering & lookupFilter assignments with OR
Return assignments whose status is Complete or Review.
=FILTER(A2:F,(E2:E="Complete")+(E2:E="Review"))Open recipe →415 · Filtering & lookupFilter assignments containing text
Return assignments whose Notes cell contains urgent.
=FILTER(A2:F,REGEXMATCH(LOWER(F2:F),"urgent"))Open recipe →416 · Filtering & lookupLookup a assignment amount
Match a assignment label and return its Amount from the same table.
=XLOOKUP(H2,A2:A,C2:C,"Not found")Open recipe →417 · Filtering & lookupLast completed assignment
Return the final assignment label whose status is Complete.
=XLOOKUP("Complete",E2:E,A2:A,"Not found",0,-1)Open recipe →418 · ConditionsLabel completed assignments
Return Done for a Complete assignment; otherwise return Pending.
=IF(E2="Complete","Done","Pending")Open recipe →419 · ConditionsLeave blank assignment results blank
Keep the result empty when the assignment cell is blank; otherwise double Amount.
=IF(A2="","",C2*2)Open recipe →420 · Rows & arraysAssignment running total
Create a cumulative Amount total that grows down the assignments table.
=SUM($C$2:C2)Open recipe →421 · Counting & sumsCount completed courses
Count courses whose status is Complete without counting open or review rows.
=COUNTIF(E2:E,"Complete")Open recipe →422 · Counting & sumsCount open courses
Count courses that still have an Open status.
=COUNTIF(E2:E,"Open")Open recipe →423 · Counting & sumsCount courses by region
Count courses assigned to the North region and change the criterion for another region.
=COUNTIF(B2:B,"North")Open recipe →424 · Counting & sumsCount courses containing text
Count courses whose notes contain the word urgent anywhere in the cell.
=COUNTIF(F2:F,"*urgent*")Open recipe →425 · Counting & sumsCount non-empty courses
Count filled course cells while ignoring empty rows.
=COUNTIF(A2:A,"<>")Open recipe →426 · Counting & sumsCount blank course notes
Find how many courses have no note entered.
=COUNTBLANK(F2:F)Open recipe →427 · Counting & sumsCount courses over 1000
Count courses whose Amount is greater than 1,000.
=COUNTIF(C2:C,">1000")Open recipe →428 · Counting & sumsCount courses between amounts
Count courses with Amount values from 500 through 1,500.
=COUNTIFS(C2:C,">=500",C2:C,"<=1500")Open recipe →429 · Counting & sumsCount courses between dates
Count courses dated from July 1 through July 31, 2026.
=COUNTIFS(D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →430 · Counting & sumsCount unique completed courses
Count distinct course labels after keeping only Complete rows.
=COUNTUNIQUE(FILTER(A2:A,E2:E="Complete",A2:A<>""))Open recipe →431 · Counting & sumsSum completed courses
Add Amount values only for courses marked Complete.
=SUMIF(E2:E,"Complete",C2:C)Open recipe →432 · Counting & sumsSum courses by region
Add Amount values for courses assigned to North.
=SUMIF(B2:B,"North",C2:C)Open recipe →433 · Counting & sumsSum courses between dates
Add Amount values for courses dated within July 2026.
=SUMIFS(C2:C,D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →434 · Counting & sumsSum courses containing text
Add Amount values when the course note contains urgent.
=SUMIF(F2:F,"*urgent*",C2:C)Open recipe →435 · Counting & sumsAverage completed courses
Calculate the average Amount for courses marked Complete.
=AVERAGEIF(E2:E,"Complete",C2:C)Open recipe →436 · Counting & sumsAverage courses without zeros
Average the Amount column while leaving zero values out of the calculation.
=AVERAGEIF(C2:C,"<>0")Open recipe →437 · Filtering & lookupFilter completed courses
Return every course row whose status is Complete.
=FILTER(A2:F,E2:E="Complete")Open recipe →438 · Filtering & lookupFilter courses with AND
Return courses that are both Complete and assigned to North.
=FILTER(A2:F,E2:E="Complete",B2:B="North")Open recipe →439 · Filtering & lookupFilter courses with OR
Return courses whose status is Complete or Review.
=FILTER(A2:F,(E2:E="Complete")+(E2:E="Review"))Open recipe →440 · Filtering & lookupFilter courses containing text
Return courses whose Notes cell contains urgent.
=FILTER(A2:F,REGEXMATCH(LOWER(F2:F),"urgent"))Open recipe →441 · Filtering & lookupLookup a course amount
Match a course label and return its Amount from the same table.
=XLOOKUP(H2,A2:A,C2:C,"Not found")Open recipe →442 · Filtering & lookupLast completed course
Return the final course label whose status is Complete.
=XLOOKUP("Complete",E2:E,A2:A,"Not found",0,-1)Open recipe →443 · ConditionsLabel completed courses
Return Done for a Complete course; otherwise return Pending.
=IF(E2="Complete","Done","Pending")Open recipe →444 · ConditionsLeave blank course results blank
Keep the result empty when the course cell is blank; otherwise double Amount.
=IF(A2="","",C2*2)Open recipe →445 · Rows & arraysCourse running total
Create a cumulative Amount total that grows down the courses table.
=SUM($C$2:C2)Open recipe →446 · Counting & sumsCount completed events
Count events whose status is Complete without counting open or review rows.
=COUNTIF(E2:E,"Complete")Open recipe →447 · Counting & sumsCount open events
Count events that still have an Open status.
=COUNTIF(E2:E,"Open")Open recipe →448 · Counting & sumsCount events by region
Count events assigned to the North region and change the criterion for another region.
=COUNTIF(B2:B,"North")Open recipe →449 · Counting & sumsCount events containing text
Count events whose notes contain the word urgent anywhere in the cell.
=COUNTIF(F2:F,"*urgent*")Open recipe →450 · Counting & sumsCount non-empty events
Count filled event cells while ignoring empty rows.
=COUNTIF(A2:A,"<>")Open recipe →451 · Counting & sumsCount blank event notes
Find how many events have no note entered.
=COUNTBLANK(F2:F)Open recipe →452 · Counting & sumsCount events over 1000
Count events whose Amount is greater than 1,000.
=COUNTIF(C2:C,">1000")Open recipe →453 · Counting & sumsCount events between amounts
Count events with Amount values from 500 through 1,500.
=COUNTIFS(C2:C,">=500",C2:C,"<=1500")Open recipe →454 · Counting & sumsCount events between dates
Count events dated from July 1 through July 31, 2026.
=COUNTIFS(D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →455 · Counting & sumsCount unique completed events
Count distinct event labels after keeping only Complete rows.
=COUNTUNIQUE(FILTER(A2:A,E2:E="Complete",A2:A<>""))Open recipe →456 · Counting & sumsSum completed events
Add Amount values only for events marked Complete.
=SUMIF(E2:E,"Complete",C2:C)Open recipe →457 · Counting & sumsSum events by region
Add Amount values for events assigned to North.
=SUMIF(B2:B,"North",C2:C)Open recipe →458 · Counting & sumsSum events between dates
Add Amount values for events dated within July 2026.
=SUMIFS(C2:C,D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →459 · Counting & sumsSum events containing text
Add Amount values when the event note contains urgent.
=SUMIF(F2:F,"*urgent*",C2:C)Open recipe →460 · Counting & sumsAverage completed events
Calculate the average Amount for events marked Complete.
=AVERAGEIF(E2:E,"Complete",C2:C)Open recipe →461 · Counting & sumsAverage events without zeros
Average the Amount column while leaving zero values out of the calculation.
=AVERAGEIF(C2:C,"<>0")Open recipe →462 · Filtering & lookupFilter completed events
Return every event row whose status is Complete.
=FILTER(A2:F,E2:E="Complete")Open recipe →463 · Filtering & lookupFilter events with AND
Return events that are both Complete and assigned to North.
=FILTER(A2:F,E2:E="Complete",B2:B="North")Open recipe →464 · Filtering & lookupFilter events with OR
Return events whose status is Complete or Review.
=FILTER(A2:F,(E2:E="Complete")+(E2:E="Review"))Open recipe →465 · Filtering & lookupFilter events containing text
Return events whose Notes cell contains urgent.
=FILTER(A2:F,REGEXMATCH(LOWER(F2:F),"urgent"))Open recipe →466 · Filtering & lookupLookup a event amount
Match a event label and return its Amount from the same table.
=XLOOKUP(H2,A2:A,C2:C,"Not found")Open recipe →467 · Filtering & lookupLast completed event
Return the final event label whose status is Complete.
=XLOOKUP("Complete",E2:E,A2:A,"Not found",0,-1)Open recipe →468 · ConditionsLabel completed events
Return Done for a Complete event; otherwise return Pending.
=IF(E2="Complete","Done","Pending")Open recipe →469 · ConditionsLeave blank event results blank
Keep the result empty when the event cell is blank; otherwise double Amount.
=IF(A2="","",C2*2)Open recipe →470 · Rows & arraysEvent running total
Create a cumulative Amount total that grows down the events table.
=SUM($C$2:C2)Open recipe →471 · Counting & sumsCount completed bookings
Count bookings whose status is Complete without counting open or review rows.
=COUNTIF(E2:E,"Complete")Open recipe →472 · Counting & sumsCount open bookings
Count bookings that still have an Open status.
=COUNTIF(E2:E,"Open")Open recipe →473 · Counting & sumsCount bookings by region
Count bookings assigned to the North region and change the criterion for another region.
=COUNTIF(B2:B,"North")Open recipe →474 · Counting & sumsCount bookings containing text
Count bookings whose notes contain the word urgent anywhere in the cell.
=COUNTIF(F2:F,"*urgent*")Open recipe →475 · Counting & sumsCount non-empty bookings
Count filled booking cells while ignoring empty rows.
=COUNTIF(A2:A,"<>")Open recipe →476 · Counting & sumsCount blank booking notes
Find how many bookings have no note entered.
=COUNTBLANK(F2:F)Open recipe →477 · Counting & sumsCount bookings over 1000
Count bookings whose Amount is greater than 1,000.
=COUNTIF(C2:C,">1000")Open recipe →478 · Counting & sumsCount bookings between amounts
Count bookings with Amount values from 500 through 1,500.
=COUNTIFS(C2:C,">=500",C2:C,"<=1500")Open recipe →479 · Counting & sumsCount bookings between dates
Count bookings dated from July 1 through July 31, 2026.
=COUNTIFS(D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →480 · Counting & sumsCount unique completed bookings
Count distinct booking labels after keeping only Complete rows.
=COUNTUNIQUE(FILTER(A2:A,E2:E="Complete",A2:A<>""))Open recipe →481 · Counting & sumsSum completed bookings
Add Amount values only for bookings marked Complete.
=SUMIF(E2:E,"Complete",C2:C)Open recipe →482 · Counting & sumsSum bookings by region
Add Amount values for bookings assigned to North.
=SUMIF(B2:B,"North",C2:C)Open recipe →483 · Counting & sumsSum bookings between dates
Add Amount values for bookings dated within July 2026.
=SUMIFS(C2:C,D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →484 · Counting & sumsSum bookings containing text
Add Amount values when the booking note contains urgent.
=SUMIF(F2:F,"*urgent*",C2:C)Open recipe →485 · Counting & sumsAverage completed bookings
Calculate the average Amount for bookings marked Complete.
=AVERAGEIF(E2:E,"Complete",C2:C)Open recipe →486 · Counting & sumsAverage bookings without zeros
Average the Amount column while leaving zero values out of the calculation.
=AVERAGEIF(C2:C,"<>0")Open recipe →487 · Filtering & lookupFilter completed bookings
Return every booking row whose status is Complete.
=FILTER(A2:F,E2:E="Complete")Open recipe →488 · Filtering & lookupFilter bookings with AND
Return bookings that are both Complete and assigned to North.
=FILTER(A2:F,E2:E="Complete",B2:B="North")Open recipe →489 · Filtering & lookupFilter bookings with OR
Return bookings whose status is Complete or Review.
=FILTER(A2:F,(E2:E="Complete")+(E2:E="Review"))Open recipe →490 · Filtering & lookupFilter bookings containing text
Return bookings whose Notes cell contains urgent.
=FILTER(A2:F,REGEXMATCH(LOWER(F2:F),"urgent"))Open recipe →491 · Filtering & lookupLookup a booking amount
Match a booking label and return its Amount from the same table.
=XLOOKUP(H2,A2:A,C2:C,"Not found")Open recipe →492 · Filtering & lookupLast completed booking
Return the final booking label whose status is Complete.
=XLOOKUP("Complete",E2:E,A2:A,"Not found",0,-1)Open recipe →493 · ConditionsLabel completed bookings
Return Done for a Complete booking; otherwise return Pending.
=IF(E2="Complete","Done","Pending")Open recipe →494 · ConditionsLeave blank booking results blank
Keep the result empty when the booking cell is blank; otherwise double Amount.
=IF(A2="","",C2*2)Open recipe →495 · Rows & arraysBooking running total
Create a cumulative Amount total that grows down the bookings table.
=SUM($C$2:C2)Open recipe →496 · Counting & sumsCount completed subscriptions
Count subscriptions whose status is Complete without counting open or review rows.
=COUNTIF(E2:E,"Complete")Open recipe →497 · Counting & sumsCount open subscriptions
Count subscriptions that still have an Open status.
=COUNTIF(E2:E,"Open")Open recipe →498 · Counting & sumsCount subscriptions by region
Count subscriptions assigned to the North region and change the criterion for another region.
=COUNTIF(B2:B,"North")Open recipe →499 · Counting & sumsCount subscriptions containing text
Count subscriptions whose notes contain the word urgent anywhere in the cell.
=COUNTIF(F2:F,"*urgent*")Open recipe →500 · Counting & sumsCount non-empty subscriptions
Count filled subscription cells while ignoring empty rows.
=COUNTIF(A2:A,"<>")Open recipe →501 · Counting & sumsCount blank subscription notes
Find how many subscriptions have no note entered.
=COUNTBLANK(F2:F)Open recipe →502 · Counting & sumsCount subscriptions over 1000
Count subscriptions whose Amount is greater than 1,000.
=COUNTIF(C2:C,">1000")Open recipe →503 · Counting & sumsCount subscriptions between amounts
Count subscriptions with Amount values from 500 through 1,500.
=COUNTIFS(C2:C,">=500",C2:C,"<=1500")Open recipe →504 · Counting & sumsCount subscriptions between dates
Count subscriptions dated from July 1 through July 31, 2026.
=COUNTIFS(D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →505 · Counting & sumsCount unique completed subscriptions
Count distinct subscription labels after keeping only Complete rows.
=COUNTUNIQUE(FILTER(A2:A,E2:E="Complete",A2:A<>""))Open recipe →506 · Counting & sumsSum completed subscriptions
Add Amount values only for subscriptions marked Complete.
=SUMIF(E2:E,"Complete",C2:C)Open recipe →507 · Counting & sumsSum subscriptions by region
Add Amount values for subscriptions assigned to North.
=SUMIF(B2:B,"North",C2:C)Open recipe →508 · Counting & sumsSum subscriptions between dates
Add Amount values for subscriptions dated within July 2026.
=SUMIFS(C2:C,D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →509 · Counting & sumsSum subscriptions containing text
Add Amount values when the subscription note contains urgent.
=SUMIF(F2:F,"*urgent*",C2:C)Open recipe →510 · Counting & sumsAverage completed subscriptions
Calculate the average Amount for subscriptions marked Complete.
=AVERAGEIF(E2:E,"Complete",C2:C)Open recipe →511 · Counting & sumsAverage subscriptions without zeros
Average the Amount column while leaving zero values out of the calculation.
=AVERAGEIF(C2:C,"<>0")Open recipe →512 · Filtering & lookupFilter completed subscriptions
Return every subscription row whose status is Complete.
=FILTER(A2:F,E2:E="Complete")Open recipe →513 · Filtering & lookupFilter subscriptions with AND
Return subscriptions that are both Complete and assigned to North.
=FILTER(A2:F,E2:E="Complete",B2:B="North")Open recipe →514 · Filtering & lookupFilter subscriptions with OR
Return subscriptions whose status is Complete or Review.
=FILTER(A2:F,(E2:E="Complete")+(E2:E="Review"))Open recipe →515 · Filtering & lookupFilter subscriptions containing text
Return subscriptions whose Notes cell contains urgent.
=FILTER(A2:F,REGEXMATCH(LOWER(F2:F),"urgent"))Open recipe →516 · Filtering & lookupLookup a subscription amount
Match a subscription label and return its Amount from the same table.
=XLOOKUP(H2,A2:A,C2:C,"Not found")Open recipe →517 · Filtering & lookupLast completed subscription
Return the final subscription label whose status is Complete.
=XLOOKUP("Complete",E2:E,A2:A,"Not found",0,-1)Open recipe →518 · ConditionsLabel completed subscriptions
Return Done for a Complete subscription; otherwise return Pending.
=IF(E2="Complete","Done","Pending")Open recipe →519 · ConditionsLeave blank subscription results blank
Keep the result empty when the subscription cell is blank; otherwise double Amount.
=IF(A2="","",C2*2)Open recipe →520 · Rows & arraysSubscription running total
Create a cumulative Amount total that grows down the subscriptions table.
=SUM($C$2:C2)Open recipe →521 · Counting & sumsCount completed vendors
Count vendors whose status is Complete without counting open or review rows.
=COUNTIF(E2:E,"Complete")Open recipe →522 · Counting & sumsCount open vendors
Count vendors that still have an Open status.
=COUNTIF(E2:E,"Open")Open recipe →523 · Counting & sumsCount vendors by region
Count vendors assigned to the North region and change the criterion for another region.
=COUNTIF(B2:B,"North")Open recipe →524 · Counting & sumsCount vendors containing text
Count vendors whose notes contain the word urgent anywhere in the cell.
=COUNTIF(F2:F,"*urgent*")Open recipe →525 · Counting & sumsCount non-empty vendors
Count filled vendor cells while ignoring empty rows.
=COUNTIF(A2:A,"<>")Open recipe →526 · Counting & sumsCount blank vendor notes
Find how many vendors have no note entered.
=COUNTBLANK(F2:F)Open recipe →527 · Counting & sumsCount vendors over 1000
Count vendors whose Amount is greater than 1,000.
=COUNTIF(C2:C,">1000")Open recipe →528 · Counting & sumsCount vendors between amounts
Count vendors with Amount values from 500 through 1,500.
=COUNTIFS(C2:C,">=500",C2:C,"<=1500")Open recipe →529 · Counting & sumsCount vendors between dates
Count vendors dated from July 1 through July 31, 2026.
=COUNTIFS(D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →530 · Counting & sumsCount unique completed vendors
Count distinct vendor labels after keeping only Complete rows.
=COUNTUNIQUE(FILTER(A2:A,E2:E="Complete",A2:A<>""))Open recipe →531 · Counting & sumsSum completed vendors
Add Amount values only for vendors marked Complete.
=SUMIF(E2:E,"Complete",C2:C)Open recipe →532 · Counting & sumsSum vendors by region
Add Amount values for vendors assigned to North.
=SUMIF(B2:B,"North",C2:C)Open recipe →533 · Counting & sumsSum vendors between dates
Add Amount values for vendors dated within July 2026.
=SUMIFS(C2:C,D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →534 · Counting & sumsSum vendors containing text
Add Amount values when the vendor note contains urgent.
=SUMIF(F2:F,"*urgent*",C2:C)Open recipe →535 · Counting & sumsAverage completed vendors
Calculate the average Amount for vendors marked Complete.
=AVERAGEIF(E2:E,"Complete",C2:C)Open recipe →536 · Counting & sumsAverage vendors without zeros
Average the Amount column while leaving zero values out of the calculation.
=AVERAGEIF(C2:C,"<>0")Open recipe →537 · Filtering & lookupFilter completed vendors
Return every vendor row whose status is Complete.
=FILTER(A2:F,E2:E="Complete")Open recipe →538 · Filtering & lookupFilter vendors with AND
Return vendors that are both Complete and assigned to North.
=FILTER(A2:F,E2:E="Complete",B2:B="North")Open recipe →539 · Filtering & lookupFilter vendors with OR
Return vendors whose status is Complete or Review.
=FILTER(A2:F,(E2:E="Complete")+(E2:E="Review"))Open recipe →540 · Filtering & lookupFilter vendors containing text
Return vendors whose Notes cell contains urgent.
=FILTER(A2:F,REGEXMATCH(LOWER(F2:F),"urgent"))Open recipe →541 · Filtering & lookupLookup a vendor amount
Match a vendor label and return its Amount from the same table.
=XLOOKUP(H2,A2:A,C2:C,"Not found")Open recipe →542 · Filtering & lookupLast completed vendor
Return the final vendor label whose status is Complete.
=XLOOKUP("Complete",E2:E,A2:A,"Not found",0,-1)Open recipe →543 · ConditionsLabel completed vendors
Return Done for a Complete vendor; otherwise return Pending.
=IF(E2="Complete","Done","Pending")Open recipe →544 · ConditionsLeave blank vendor results blank
Keep the result empty when the vendor cell is blank; otherwise double Amount.
=IF(A2="","",C2*2)Open recipe →545 · Rows & arraysVendor running total
Create a cumulative Amount total that grows down the vendors table.
=SUM($C$2:C2)Open recipe →546 · Counting & sumsCount completed payments
Count payments whose status is Complete without counting open or review rows.
=COUNTIF(E2:E,"Complete")Open recipe →547 · Counting & sumsCount open payments
Count payments that still have an Open status.
=COUNTIF(E2:E,"Open")Open recipe →548 · Counting & sumsCount payments by region
Count payments assigned to the North region and change the criterion for another region.
=COUNTIF(B2:B,"North")Open recipe →549 · Counting & sumsCount payments containing text
Count payments whose notes contain the word urgent anywhere in the cell.
=COUNTIF(F2:F,"*urgent*")Open recipe →550 · Counting & sumsCount non-empty payments
Count filled payment cells while ignoring empty rows.
=COUNTIF(A2:A,"<>")Open recipe →551 · Counting & sumsCount blank payment notes
Find how many payments have no note entered.
=COUNTBLANK(F2:F)Open recipe →552 · Counting & sumsCount payments over 1000
Count payments whose Amount is greater than 1,000.
=COUNTIF(C2:C,">1000")Open recipe →553 · Counting & sumsCount payments between amounts
Count payments with Amount values from 500 through 1,500.
=COUNTIFS(C2:C,">=500",C2:C,"<=1500")Open recipe →554 · Counting & sumsCount payments between dates
Count payments dated from July 1 through July 31, 2026.
=COUNTIFS(D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →555 · Counting & sumsCount unique completed payments
Count distinct payment labels after keeping only Complete rows.
=COUNTUNIQUE(FILTER(A2:A,E2:E="Complete",A2:A<>""))Open recipe →556 · Counting & sumsSum completed payments
Add Amount values only for payments marked Complete.
=SUMIF(E2:E,"Complete",C2:C)Open recipe →557 · Counting & sumsSum payments by region
Add Amount values for payments assigned to North.
=SUMIF(B2:B,"North",C2:C)Open recipe →558 · Counting & sumsSum payments between dates
Add Amount values for payments dated within July 2026.
=SUMIFS(C2:C,D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →559 · Counting & sumsSum payments containing text
Add Amount values when the payment note contains urgent.
=SUMIF(F2:F,"*urgent*",C2:C)Open recipe →560 · Counting & sumsAverage completed payments
Calculate the average Amount for payments marked Complete.
=AVERAGEIF(E2:E,"Complete",C2:C)Open recipe →561 · Counting & sumsAverage payments without zeros
Average the Amount column while leaving zero values out of the calculation.
=AVERAGEIF(C2:C,"<>0")Open recipe →562 · Filtering & lookupFilter completed payments
Return every payment row whose status is Complete.
=FILTER(A2:F,E2:E="Complete")Open recipe →563 · Filtering & lookupFilter payments with AND
Return payments that are both Complete and assigned to North.
=FILTER(A2:F,E2:E="Complete",B2:B="North")Open recipe →564 · Filtering & lookupFilter payments with OR
Return payments whose status is Complete or Review.
=FILTER(A2:F,(E2:E="Complete")+(E2:E="Review"))Open recipe →565 · Filtering & lookupFilter payments containing text
Return payments whose Notes cell contains urgent.
=FILTER(A2:F,REGEXMATCH(LOWER(F2:F),"urgent"))Open recipe →566 · Filtering & lookupLookup a payment amount
Match a payment label and return its Amount from the same table.
=XLOOKUP(H2,A2:A,C2:C,"Not found")Open recipe →567 · Filtering & lookupLast completed payment
Return the final payment label whose status is Complete.
=XLOOKUP("Complete",E2:E,A2:A,"Not found",0,-1)Open recipe →568 · ConditionsLabel completed payments
Return Done for a Complete payment; otherwise return Pending.
=IF(E2="Complete","Done","Pending")Open recipe →569 · ConditionsLeave blank payment results blank
Keep the result empty when the payment cell is blank; otherwise double Amount.
=IF(A2="","",C2*2)Open recipe →570 · Rows & arraysPayment running total
Create a cumulative Amount total that grows down the payments table.
=SUM($C$2:C2)Open recipe →571 · Counting & sumsCount completed transactions
Count transactions whose status is Complete without counting open or review rows.
=COUNTIF(E2:E,"Complete")Open recipe →572 · Counting & sumsCount open transactions
Count transactions that still have an Open status.
=COUNTIF(E2:E,"Open")Open recipe →573 · Counting & sumsCount transactions by region
Count transactions assigned to the North region and change the criterion for another region.
=COUNTIF(B2:B,"North")Open recipe →574 · Counting & sumsCount transactions containing text
Count transactions whose notes contain the word urgent anywhere in the cell.
=COUNTIF(F2:F,"*urgent*")Open recipe →575 · Counting & sumsCount non-empty transactions
Count filled transaction cells while ignoring empty rows.
=COUNTIF(A2:A,"<>")Open recipe →576 · Counting & sumsCount blank transaction notes
Find how many transactions have no note entered.
=COUNTBLANK(F2:F)Open recipe →577 · Counting & sumsCount transactions over 1000
Count transactions whose Amount is greater than 1,000.
=COUNTIF(C2:C,">1000")Open recipe →578 · Counting & sumsCount transactions between amounts
Count transactions with Amount values from 500 through 1,500.
=COUNTIFS(C2:C,">=500",C2:C,"<=1500")Open recipe →579 · Counting & sumsCount transactions between dates
Count transactions dated from July 1 through July 31, 2026.
=COUNTIFS(D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →580 · Counting & sumsCount unique completed transactions
Count distinct transaction labels after keeping only Complete rows.
=COUNTUNIQUE(FILTER(A2:A,E2:E="Complete",A2:A<>""))Open recipe →581 · Counting & sumsSum completed transactions
Add Amount values only for transactions marked Complete.
=SUMIF(E2:E,"Complete",C2:C)Open recipe →582 · Counting & sumsSum transactions by region
Add Amount values for transactions assigned to North.
=SUMIF(B2:B,"North",C2:C)Open recipe →583 · Counting & sumsSum transactions between dates
Add Amount values for transactions dated within July 2026.
=SUMIFS(C2:C,D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →584 · Counting & sumsSum transactions containing text
Add Amount values when the transaction note contains urgent.
=SUMIF(F2:F,"*urgent*",C2:C)Open recipe →585 · Counting & sumsAverage completed transactions
Calculate the average Amount for transactions marked Complete.
=AVERAGEIF(E2:E,"Complete",C2:C)Open recipe →586 · Counting & sumsAverage transactions without zeros
Average the Amount column while leaving zero values out of the calculation.
=AVERAGEIF(C2:C,"<>0")Open recipe →587 · Filtering & lookupFilter completed transactions
Return every transaction row whose status is Complete.
=FILTER(A2:F,E2:E="Complete")Open recipe →588 · Filtering & lookupFilter transactions with AND
Return transactions that are both Complete and assigned to North.
=FILTER(A2:F,E2:E="Complete",B2:B="North")Open recipe →589 · Filtering & lookupFilter transactions with OR
Return transactions whose status is Complete or Review.
=FILTER(A2:F,(E2:E="Complete")+(E2:E="Review"))Open recipe →590 · Filtering & lookupFilter transactions containing text
Return transactions whose Notes cell contains urgent.
=FILTER(A2:F,REGEXMATCH(LOWER(F2:F),"urgent"))Open recipe →591 · Filtering & lookupLookup a transaction amount
Match a transaction label and return its Amount from the same table.
=XLOOKUP(H2,A2:A,C2:C,"Not found")Open recipe →592 · Filtering & lookupLast completed transaction
Return the final transaction label whose status is Complete.
=XLOOKUP("Complete",E2:E,A2:A,"Not found",0,-1)Open recipe →593 · ConditionsLabel completed transactions
Return Done for a Complete transaction; otherwise return Pending.
=IF(E2="Complete","Done","Pending")Open recipe →594 · ConditionsLeave blank transaction results blank
Keep the result empty when the transaction cell is blank; otherwise double Amount.
=IF(A2="","",C2*2)Open recipe →595 · Rows & arraysTransaction running total
Create a cumulative Amount total that grows down the transactions table.
=SUM($C$2:C2)Open recipe →596 · Counting & sumsCount completed budget items
Count budget items whose status is Complete without counting open or review rows.
=COUNTIF(E2:E,"Complete")Open recipe →597 · Counting & sumsCount open budget items
Count budget items that still have an Open status.
=COUNTIF(E2:E,"Open")Open recipe →598 · Counting & sumsCount budget items by region
Count budget items assigned to the North region and change the criterion for another region.
=COUNTIF(B2:B,"North")Open recipe →599 · Counting & sumsCount budget items containing text
Count budget items whose notes contain the word urgent anywhere in the cell.
=COUNTIF(F2:F,"*urgent*")Open recipe →600 · Counting & sumsCount non-empty budget items
Count filled budget item cells while ignoring empty rows.
=COUNTIF(A2:A,"<>")Open recipe →601 · Counting & sumsCount blank budget item notes
Find how many budget items have no note entered.
=COUNTBLANK(F2:F)Open recipe →602 · Counting & sumsCount budget items over 1000
Count budget items whose Amount is greater than 1,000.
=COUNTIF(C2:C,">1000")Open recipe →603 · Counting & sumsCount budget items between amounts
Count budget items with Amount values from 500 through 1,500.
=COUNTIFS(C2:C,">=500",C2:C,"<=1500")Open recipe →604 · Counting & sumsCount budget items between dates
Count budget items dated from July 1 through July 31, 2026.
=COUNTIFS(D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →605 · Counting & sumsCount unique completed budget items
Count distinct budget item labels after keeping only Complete rows.
=COUNTUNIQUE(FILTER(A2:A,E2:E="Complete",A2:A<>""))Open recipe →606 · Counting & sumsSum completed budget items
Add Amount values only for budget items marked Complete.
=SUMIF(E2:E,"Complete",C2:C)Open recipe →607 · Counting & sumsSum budget items by region
Add Amount values for budget items assigned to North.
=SUMIF(B2:B,"North",C2:C)Open recipe →608 · Counting & sumsSum budget items between dates
Add Amount values for budget items dated within July 2026.
=SUMIFS(C2:C,D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →609 · Counting & sumsSum budget items containing text
Add Amount values when the budget item note contains urgent.
=SUMIF(F2:F,"*urgent*",C2:C)Open recipe →610 · Counting & sumsAverage completed budget items
Calculate the average Amount for budget items marked Complete.
=AVERAGEIF(E2:E,"Complete",C2:C)Open recipe →611 · Counting & sumsAverage budget items without zeros
Average the Amount column while leaving zero values out of the calculation.
=AVERAGEIF(C2:C,"<>0")Open recipe →612 · Filtering & lookupFilter completed budget items
Return every budget item row whose status is Complete.
=FILTER(A2:F,E2:E="Complete")Open recipe →613 · Filtering & lookupFilter budget items with AND
Return budget items that are both Complete and assigned to North.
=FILTER(A2:F,E2:E="Complete",B2:B="North")Open recipe →614 · Filtering & lookupFilter budget items with OR
Return budget items whose status is Complete or Review.
=FILTER(A2:F,(E2:E="Complete")+(E2:E="Review"))Open recipe →615 · Filtering & lookupFilter budget items containing text
Return budget items whose Notes cell contains urgent.
=FILTER(A2:F,REGEXMATCH(LOWER(F2:F),"urgent"))Open recipe →616 · Filtering & lookupLookup a budget item amount
Match a budget item label and return its Amount from the same table.
=XLOOKUP(H2,A2:A,C2:C,"Not found")Open recipe →617 · Filtering & lookupLast completed budget item
Return the final budget item label whose status is Complete.
=XLOOKUP("Complete",E2:E,A2:A,"Not found",0,-1)Open recipe →618 · ConditionsLabel completed budget items
Return Done for a Complete budget item; otherwise return Pending.
=IF(E2="Complete","Done","Pending")Open recipe →619 · ConditionsLeave blank budget item results blank
Keep the result empty when the budget item cell is blank; otherwise double Amount.
=IF(A2="","",C2*2)Open recipe →620 · Rows & arraysBudget item running total
Create a cumulative Amount total that grows down the budget items table.
=SUM($C$2:C2)Open recipe →621 · Counting & sumsCount completed campaigns
Count campaigns whose status is Complete without counting open or review rows.
=COUNTIF(E2:E,"Complete")Open recipe →622 · Counting & sumsCount open campaigns
Count campaigns that still have an Open status.
=COUNTIF(E2:E,"Open")Open recipe →623 · Counting & sumsCount campaigns by region
Count campaigns assigned to the North region and change the criterion for another region.
=COUNTIF(B2:B,"North")Open recipe →624 · Counting & sumsCount campaigns containing text
Count campaigns whose notes contain the word urgent anywhere in the cell.
=COUNTIF(F2:F,"*urgent*")Open recipe →625 · Counting & sumsCount non-empty campaigns
Count filled campaign cells while ignoring empty rows.
=COUNTIF(A2:A,"<>")Open recipe →626 · Counting & sumsCount blank campaign notes
Find how many campaigns have no note entered.
=COUNTBLANK(F2:F)Open recipe →627 · Counting & sumsCount campaigns over 1000
Count campaigns whose Amount is greater than 1,000.
=COUNTIF(C2:C,">1000")Open recipe →628 · Counting & sumsCount campaigns between amounts
Count campaigns with Amount values from 500 through 1,500.
=COUNTIFS(C2:C,">=500",C2:C,"<=1500")Open recipe →629 · Counting & sumsCount campaigns between dates
Count campaigns dated from July 1 through July 31, 2026.
=COUNTIFS(D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →630 · Counting & sumsCount unique completed campaigns
Count distinct campaign labels after keeping only Complete rows.
=COUNTUNIQUE(FILTER(A2:A,E2:E="Complete",A2:A<>""))Open recipe →631 · Counting & sumsSum completed campaigns
Add Amount values only for campaigns marked Complete.
=SUMIF(E2:E,"Complete",C2:C)Open recipe →632 · Counting & sumsSum campaigns by region
Add Amount values for campaigns assigned to North.
=SUMIF(B2:B,"North",C2:C)Open recipe →633 · Counting & sumsSum campaigns between dates
Add Amount values for campaigns dated within July 2026.
=SUMIFS(C2:C,D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →634 · Counting & sumsSum campaigns containing text
Add Amount values when the campaign note contains urgent.
=SUMIF(F2:F,"*urgent*",C2:C)Open recipe →635 · Counting & sumsAverage completed campaigns
Calculate the average Amount for campaigns marked Complete.
=AVERAGEIF(E2:E,"Complete",C2:C)Open recipe →636 · Counting & sumsAverage campaigns without zeros
Average the Amount column while leaving zero values out of the calculation.
=AVERAGEIF(C2:C,"<>0")Open recipe →637 · Filtering & lookupFilter completed campaigns
Return every campaign row whose status is Complete.
=FILTER(A2:F,E2:E="Complete")Open recipe →638 · Filtering & lookupFilter campaigns with AND
Return campaigns that are both Complete and assigned to North.
=FILTER(A2:F,E2:E="Complete",B2:B="North")Open recipe →639 · Filtering & lookupFilter campaigns with OR
Return campaigns whose status is Complete or Review.
=FILTER(A2:F,(E2:E="Complete")+(E2:E="Review"))Open recipe →640 · Filtering & lookupFilter campaigns containing text
Return campaigns whose Notes cell contains urgent.
=FILTER(A2:F,REGEXMATCH(LOWER(F2:F),"urgent"))Open recipe →641 · Filtering & lookupLookup a campaign amount
Match a campaign label and return its Amount from the same table.
=XLOOKUP(H2,A2:A,C2:C,"Not found")Open recipe →642 · Filtering & lookupLast completed campaign
Return the final campaign label whose status is Complete.
=XLOOKUP("Complete",E2:E,A2:A,"Not found",0,-1)Open recipe →643 · ConditionsLabel completed campaigns
Return Done for a Complete campaign; otherwise return Pending.
=IF(E2="Complete","Done","Pending")Open recipe →644 · ConditionsLeave blank campaign results blank
Keep the result empty when the campaign cell is blank; otherwise double Amount.
=IF(A2="","",C2*2)Open recipe →645 · Rows & arraysCampaign running total
Create a cumulative Amount total that grows down the campaigns table.
=SUM($C$2:C2)Open recipe →646 · Counting & sumsCount completed content items
Count content items whose status is Complete without counting open or review rows.
=COUNTIF(E2:E,"Complete")Open recipe →647 · Counting & sumsCount open content items
Count content items that still have an Open status.
=COUNTIF(E2:E,"Open")Open recipe →648 · Counting & sumsCount content items by region
Count content items assigned to the North region and change the criterion for another region.
=COUNTIF(B2:B,"North")Open recipe →649 · Counting & sumsCount content items containing text
Count content items whose notes contain the word urgent anywhere in the cell.
=COUNTIF(F2:F,"*urgent*")Open recipe →650 · Counting & sumsCount non-empty content items
Count filled content item cells while ignoring empty rows.
=COUNTIF(A2:A,"<>")Open recipe →651 · Counting & sumsCount blank content item notes
Find how many content items have no note entered.
=COUNTBLANK(F2:F)Open recipe →652 · Counting & sumsCount content items over 1000
Count content items whose Amount is greater than 1,000.
=COUNTIF(C2:C,">1000")Open recipe →653 · Counting & sumsCount content items between amounts
Count content items with Amount values from 500 through 1,500.
=COUNTIFS(C2:C,">=500",C2:C,"<=1500")Open recipe →654 · Counting & sumsCount content items between dates
Count content items dated from July 1 through July 31, 2026.
=COUNTIFS(D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →655 · Counting & sumsCount unique completed content items
Count distinct content item labels after keeping only Complete rows.
=COUNTUNIQUE(FILTER(A2:A,E2:E="Complete",A2:A<>""))Open recipe →656 · Counting & sumsSum completed content items
Add Amount values only for content items marked Complete.
=SUMIF(E2:E,"Complete",C2:C)Open recipe →657 · Counting & sumsSum content items by region
Add Amount values for content items assigned to North.
=SUMIF(B2:B,"North",C2:C)Open recipe →658 · Counting & sumsSum content items between dates
Add Amount values for content items dated within July 2026.
=SUMIFS(C2:C,D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →659 · Counting & sumsSum content items containing text
Add Amount values when the content item note contains urgent.
=SUMIF(F2:F,"*urgent*",C2:C)Open recipe →660 · Counting & sumsAverage completed content items
Calculate the average Amount for content items marked Complete.
=AVERAGEIF(E2:E,"Complete",C2:C)Open recipe →661 · Counting & sumsAverage content items without zeros
Average the Amount column while leaving zero values out of the calculation.
=AVERAGEIF(C2:C,"<>0")Open recipe →662 · Filtering & lookupFilter completed content items
Return every content item row whose status is Complete.
=FILTER(A2:F,E2:E="Complete")Open recipe →663 · Filtering & lookupFilter content items with AND
Return content items that are both Complete and assigned to North.
=FILTER(A2:F,E2:E="Complete",B2:B="North")Open recipe →664 · Filtering & lookupFilter content items with OR
Return content items whose status is Complete or Review.
=FILTER(A2:F,(E2:E="Complete")+(E2:E="Review"))Open recipe →665 · Filtering & lookupFilter content items containing text
Return content items whose Notes cell contains urgent.
=FILTER(A2:F,REGEXMATCH(LOWER(F2:F),"urgent"))Open recipe →666 · Filtering & lookupLookup a content item amount
Match a content item label and return its Amount from the same table.
=XLOOKUP(H2,A2:A,C2:C,"Not found")Open recipe →667 · Filtering & lookupLast completed content item
Return the final content item label whose status is Complete.
=XLOOKUP("Complete",E2:E,A2:A,"Not found",0,-1)Open recipe →668 · ConditionsLabel completed content items
Return Done for a Complete content item; otherwise return Pending.
=IF(E2="Complete","Done","Pending")Open recipe →669 · ConditionsLeave blank content item results blank
Keep the result empty when the content item cell is blank; otherwise double Amount.
=IF(A2="","",C2*2)Open recipe →670 · Rows & arraysContent item running total
Create a cumulative Amount total that grows down the content items table.
=SUM($C$2:C2)Open recipe →671 · Counting & sumsCount completed website pages
Count website pages whose status is Complete without counting open or review rows.
=COUNTIF(E2:E,"Complete")Open recipe →672 · Counting & sumsCount open website pages
Count website pages that still have an Open status.
=COUNTIF(E2:E,"Open")Open recipe →673 · Counting & sumsCount website pages by region
Count website pages assigned to the North region and change the criterion for another region.
=COUNTIF(B2:B,"North")Open recipe →674 · Counting & sumsCount website pages containing text
Count website pages whose notes contain the word urgent anywhere in the cell.
=COUNTIF(F2:F,"*urgent*")Open recipe →675 · Counting & sumsCount non-empty website pages
Count filled page cells while ignoring empty rows.
=COUNTIF(A2:A,"<>")Open recipe →676 · Counting & sumsCount blank website page notes
Find how many website pages have no note entered.
=COUNTBLANK(F2:F)Open recipe →677 · Counting & sumsCount website pages over 1000
Count website pages whose Amount is greater than 1,000.
=COUNTIF(C2:C,">1000")Open recipe →678 · Counting & sumsCount website pages between amounts
Count website pages with Amount values from 500 through 1,500.
=COUNTIFS(C2:C,">=500",C2:C,"<=1500")Open recipe →679 · Counting & sumsCount website pages between dates
Count website pages dated from July 1 through July 31, 2026.
=COUNTIFS(D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →680 · Counting & sumsCount unique completed website pages
Count distinct page labels after keeping only Complete rows.
=COUNTUNIQUE(FILTER(A2:A,E2:E="Complete",A2:A<>""))Open recipe →681 · Counting & sumsSum completed website pages
Add Amount values only for website pages marked Complete.
=SUMIF(E2:E,"Complete",C2:C)Open recipe →682 · Counting & sumsSum website pages by region
Add Amount values for website pages assigned to North.
=SUMIF(B2:B,"North",C2:C)Open recipe →683 · Counting & sumsSum website pages between dates
Add Amount values for website pages dated within July 2026.
=SUMIFS(C2:C,D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →684 · Counting & sumsSum website pages containing text
Add Amount values when the website page note contains urgent.
=SUMIF(F2:F,"*urgent*",C2:C)Open recipe →685 · Counting & sumsAverage completed website pages
Calculate the average Amount for website pages marked Complete.
=AVERAGEIF(E2:E,"Complete",C2:C)Open recipe →686 · Counting & sumsAverage website pages without zeros
Average the Amount column while leaving zero values out of the calculation.
=AVERAGEIF(C2:C,"<>0")Open recipe →687 · Filtering & lookupFilter completed website pages
Return every website page row whose status is Complete.
=FILTER(A2:F,E2:E="Complete")Open recipe →688 · Filtering & lookupFilter website pages with AND
Return website pages that are both Complete and assigned to North.
=FILTER(A2:F,E2:E="Complete",B2:B="North")Open recipe →689 · Filtering & lookupFilter website pages with OR
Return website pages whose status is Complete or Review.
=FILTER(A2:F,(E2:E="Complete")+(E2:E="Review"))Open recipe →690 · Filtering & lookupFilter website pages containing text
Return website pages whose Notes cell contains urgent.
=FILTER(A2:F,REGEXMATCH(LOWER(F2:F),"urgent"))Open recipe →691 · Filtering & lookupLookup a website page amount
Match a page label and return its Amount from the same table.
=XLOOKUP(H2,A2:A,C2:C,"Not found")Open recipe →692 · Filtering & lookupLast completed website page
Return the final page label whose status is Complete.
=XLOOKUP("Complete",E2:E,A2:A,"Not found",0,-1)Open recipe →693 · ConditionsLabel completed website pages
Return Done for a Complete website page; otherwise return Pending.
=IF(E2="Complete","Done","Pending")Open recipe →694 · ConditionsLeave blank website page results blank
Keep the result empty when the page cell is blank; otherwise double Amount.
=IF(A2="","",C2*2)Open recipe →695 · Rows & arraysPage running total
Create a cumulative Amount total that grows down the website pages table.
=SUM($C$2:C2)Open recipe →696 · Counting & sumsCount completed keywords
Count keywords whose status is Complete without counting open or review rows.
=COUNTIF(E2:E,"Complete")Open recipe →697 · Counting & sumsCount open keywords
Count keywords that still have an Open status.
=COUNTIF(E2:E,"Open")Open recipe →698 · Counting & sumsCount keywords by region
Count keywords assigned to the North region and change the criterion for another region.
=COUNTIF(B2:B,"North")Open recipe →699 · Counting & sumsCount keywords containing text
Count keywords whose notes contain the word urgent anywhere in the cell.
=COUNTIF(F2:F,"*urgent*")Open recipe →700 · Counting & sumsCount non-empty keywords
Count filled keyword cells while ignoring empty rows.
=COUNTIF(A2:A,"<>")Open recipe →701 · Counting & sumsCount blank keyword notes
Find how many keywords have no note entered.
=COUNTBLANK(F2:F)Open recipe →702 · Counting & sumsCount keywords over 1000
Count keywords whose Amount is greater than 1,000.
=COUNTIF(C2:C,">1000")Open recipe →703 · Counting & sumsCount keywords between amounts
Count keywords with Amount values from 500 through 1,500.
=COUNTIFS(C2:C,">=500",C2:C,"<=1500")Open recipe →704 · Counting & sumsCount keywords between dates
Count keywords dated from July 1 through July 31, 2026.
=COUNTIFS(D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →705 · Counting & sumsCount unique completed keywords
Count distinct keyword labels after keeping only Complete rows.
=COUNTUNIQUE(FILTER(A2:A,E2:E="Complete",A2:A<>""))Open recipe →706 · Counting & sumsSum completed keywords
Add Amount values only for keywords marked Complete.
=SUMIF(E2:E,"Complete",C2:C)Open recipe →707 · Counting & sumsSum keywords by region
Add Amount values for keywords assigned to North.
=SUMIF(B2:B,"North",C2:C)Open recipe →708 · Counting & sumsSum keywords between dates
Add Amount values for keywords dated within July 2026.
=SUMIFS(C2:C,D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →709 · Counting & sumsSum keywords containing text
Add Amount values when the keyword note contains urgent.
=SUMIF(F2:F,"*urgent*",C2:C)Open recipe →710 · Counting & sumsAverage completed keywords
Calculate the average Amount for keywords marked Complete.
=AVERAGEIF(E2:E,"Complete",C2:C)Open recipe →711 · Counting & sumsAverage keywords without zeros
Average the Amount column while leaving zero values out of the calculation.
=AVERAGEIF(C2:C,"<>0")Open recipe →712 · Filtering & lookupFilter completed keywords
Return every keyword row whose status is Complete.
=FILTER(A2:F,E2:E="Complete")Open recipe →713 · Filtering & lookupFilter keywords with AND
Return keywords that are both Complete and assigned to North.
=FILTER(A2:F,E2:E="Complete",B2:B="North")Open recipe →714 · Filtering & lookupFilter keywords with OR
Return keywords whose status is Complete or Review.
=FILTER(A2:F,(E2:E="Complete")+(E2:E="Review"))Open recipe →715 · Filtering & lookupFilter keywords containing text
Return keywords whose Notes cell contains urgent.
=FILTER(A2:F,REGEXMATCH(LOWER(F2:F),"urgent"))Open recipe →716 · Filtering & lookupLookup a keyword amount
Match a keyword label and return its Amount from the same table.
=XLOOKUP(H2,A2:A,C2:C,"Not found")Open recipe →717 · Filtering & lookupLast completed keyword
Return the final keyword label whose status is Complete.
=XLOOKUP("Complete",E2:E,A2:A,"Not found",0,-1)Open recipe →718 · ConditionsLabel completed keywords
Return Done for a Complete keyword; otherwise return Pending.
=IF(E2="Complete","Done","Pending")Open recipe →719 · ConditionsLeave blank keyword results blank
Keep the result empty when the keyword cell is blank; otherwise double Amount.
=IF(A2="","",C2*2)Open recipe →720 · Rows & arraysKeyword running total
Create a cumulative Amount total that grows down the keywords table.
=SUM($C$2:C2)Open recipe →721 · Counting & sumsCount completed survey responses
Count survey responses whose status is Complete without counting open or review rows.
=COUNTIF(E2:E,"Complete")Open recipe →722 · Counting & sumsCount open survey responses
Count survey responses that still have an Open status.
=COUNTIF(E2:E,"Open")Open recipe →723 · Counting & sumsCount survey responses by region
Count survey responses assigned to the North region and change the criterion for another region.
=COUNTIF(B2:B,"North")Open recipe →724 · Counting & sumsCount survey responses containing text
Count survey responses whose notes contain the word urgent anywhere in the cell.
=COUNTIF(F2:F,"*urgent*")Open recipe →725 · Counting & sumsCount non-empty survey responses
Count filled response cells while ignoring empty rows.
=COUNTIF(A2:A,"<>")Open recipe →726 · Counting & sumsCount blank survey response notes
Find how many survey responses have no note entered.
=COUNTBLANK(F2:F)Open recipe →727 · Counting & sumsCount survey responses over 1000
Count survey responses whose Amount is greater than 1,000.
=COUNTIF(C2:C,">1000")Open recipe →728 · Counting & sumsCount survey responses between amounts
Count survey responses with Amount values from 500 through 1,500.
=COUNTIFS(C2:C,">=500",C2:C,"<=1500")Open recipe →729 · Counting & sumsCount survey responses between dates
Count survey responses dated from July 1 through July 31, 2026.
=COUNTIFS(D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →730 · Counting & sumsCount unique completed survey responses
Count distinct response labels after keeping only Complete rows.
=COUNTUNIQUE(FILTER(A2:A,E2:E="Complete",A2:A<>""))Open recipe →731 · Counting & sumsSum completed survey responses
Add Amount values only for survey responses marked Complete.
=SUMIF(E2:E,"Complete",C2:C)Open recipe →732 · Counting & sumsSum survey responses by region
Add Amount values for survey responses assigned to North.
=SUMIF(B2:B,"North",C2:C)Open recipe →733 · Counting & sumsSum survey responses between dates
Add Amount values for survey responses dated within July 2026.
=SUMIFS(C2:C,D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →734 · Counting & sumsSum survey responses containing text
Add Amount values when the survey response note contains urgent.
=SUMIF(F2:F,"*urgent*",C2:C)Open recipe →735 · Counting & sumsAverage completed survey responses
Calculate the average Amount for survey responses marked Complete.
=AVERAGEIF(E2:E,"Complete",C2:C)Open recipe →736 · Counting & sumsAverage survey responses without zeros
Average the Amount column while leaving zero values out of the calculation.
=AVERAGEIF(C2:C,"<>0")Open recipe →737 · Filtering & lookupFilter completed survey responses
Return every survey response row whose status is Complete.
=FILTER(A2:F,E2:E="Complete")Open recipe →738 · Filtering & lookupFilter survey responses with AND
Return survey responses that are both Complete and assigned to North.
=FILTER(A2:F,E2:E="Complete",B2:B="North")Open recipe →739 · Filtering & lookupFilter survey responses with OR
Return survey responses whose status is Complete or Review.
=FILTER(A2:F,(E2:E="Complete")+(E2:E="Review"))Open recipe →740 · Filtering & lookupFilter survey responses containing text
Return survey responses whose Notes cell contains urgent.
=FILTER(A2:F,REGEXMATCH(LOWER(F2:F),"urgent"))Open recipe →741 · Filtering & lookupLookup a survey response amount
Match a response label and return its Amount from the same table.
=XLOOKUP(H2,A2:A,C2:C,"Not found")Open recipe →742 · Filtering & lookupLast completed survey response
Return the final response label whose status is Complete.
=XLOOKUP("Complete",E2:E,A2:A,"Not found",0,-1)Open recipe →743 · ConditionsLabel completed survey responses
Return Done for a Complete survey response; otherwise return Pending.
=IF(E2="Complete","Done","Pending")Open recipe →744 · ConditionsLeave blank survey response results blank
Keep the result empty when the response cell is blank; otherwise double Amount.
=IF(A2="","",C2*2)Open recipe →745 · Rows & arraysResponse running total
Create a cumulative Amount total that grows down the survey responses table.
=SUM($C$2:C2)Open recipe →746 · Counting & sumsCount completed quality checks
Count quality checks whose status is Complete without counting open or review rows.
=COUNTIF(E2:E,"Complete")Open recipe →747 · Counting & sumsCount open quality checks
Count quality checks that still have an Open status.
=COUNTIF(E2:E,"Open")Open recipe →748 · Counting & sumsCount quality checks by region
Count quality checks assigned to the North region and change the criterion for another region.
=COUNTIF(B2:B,"North")Open recipe →749 · Counting & sumsCount quality checks containing text
Count quality checks whose notes contain the word urgent anywhere in the cell.
=COUNTIF(F2:F,"*urgent*")Open recipe →750 · Counting & sumsCount non-empty quality checks
Count filled check cells while ignoring empty rows.
=COUNTIF(A2:A,"<>")Open recipe →751 · Counting & sumsCount blank quality check notes
Find how many quality checks have no note entered.
=COUNTBLANK(F2:F)Open recipe →752 · Counting & sumsCount quality checks over 1000
Count quality checks whose Amount is greater than 1,000.
=COUNTIF(C2:C,">1000")Open recipe →753 · Counting & sumsCount quality checks between amounts
Count quality checks with Amount values from 500 through 1,500.
=COUNTIFS(C2:C,">=500",C2:C,"<=1500")Open recipe →754 · Counting & sumsCount quality checks between dates
Count quality checks dated from July 1 through July 31, 2026.
=COUNTIFS(D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →755 · Counting & sumsCount unique completed quality checks
Count distinct check labels after keeping only Complete rows.
=COUNTUNIQUE(FILTER(A2:A,E2:E="Complete",A2:A<>""))Open recipe →756 · Counting & sumsSum completed quality checks
Add Amount values only for quality checks marked Complete.
=SUMIF(E2:E,"Complete",C2:C)Open recipe →757 · Counting & sumsSum quality checks by region
Add Amount values for quality checks assigned to North.
=SUMIF(B2:B,"North",C2:C)Open recipe →758 · Counting & sumsSum quality checks between dates
Add Amount values for quality checks dated within July 2026.
=SUMIFS(C2:C,D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →759 · Counting & sumsSum quality checks containing text
Add Amount values when the quality check note contains urgent.
=SUMIF(F2:F,"*urgent*",C2:C)Open recipe →760 · Counting & sumsAverage completed quality checks
Calculate the average Amount for quality checks marked Complete.
=AVERAGEIF(E2:E,"Complete",C2:C)Open recipe →761 · Counting & sumsAverage quality checks without zeros
Average the Amount column while leaving zero values out of the calculation.
=AVERAGEIF(C2:C,"<>0")Open recipe →762 · Filtering & lookupFilter completed quality checks
Return every quality check row whose status is Complete.
=FILTER(A2:F,E2:E="Complete")Open recipe →763 · Filtering & lookupFilter quality checks with AND
Return quality checks that are both Complete and assigned to North.
=FILTER(A2:F,E2:E="Complete",B2:B="North")Open recipe →764 · Filtering & lookupFilter quality checks with OR
Return quality checks whose status is Complete or Review.
=FILTER(A2:F,(E2:E="Complete")+(E2:E="Review"))Open recipe →765 · Filtering & lookupFilter quality checks containing text
Return quality checks whose Notes cell contains urgent.
=FILTER(A2:F,REGEXMATCH(LOWER(F2:F),"urgent"))Open recipe →766 · Filtering & lookupLookup a quality check amount
Match a check label and return its Amount from the same table.
=XLOOKUP(H2,A2:A,C2:C,"Not found")Open recipe →767 · Filtering & lookupLast completed quality check
Return the final check label whose status is Complete.
=XLOOKUP("Complete",E2:E,A2:A,"Not found",0,-1)Open recipe →768 · ConditionsLabel completed quality checks
Return Done for a Complete quality check; otherwise return Pending.
=IF(E2="Complete","Done","Pending")Open recipe →769 · ConditionsLeave blank quality check results blank
Keep the result empty when the check cell is blank; otherwise double Amount.
=IF(A2="","",C2*2)Open recipe →770 · Rows & arraysCheck running total
Create a cumulative Amount total that grows down the quality checks table.
=SUM($C$2:C2)Open recipe →771 · Counting & sumsCount completed work orders
Count work orders whose status is Complete without counting open or review rows.
=COUNTIF(E2:E,"Complete")Open recipe →772 · Counting & sumsCount open work orders
Count work orders that still have an Open status.
=COUNTIF(E2:E,"Open")Open recipe →773 · Counting & sumsCount work orders by region
Count work orders assigned to the North region and change the criterion for another region.
=COUNTIF(B2:B,"North")Open recipe →774 · Counting & sumsCount work orders containing text
Count work orders whose notes contain the word urgent anywhere in the cell.
=COUNTIF(F2:F,"*urgent*")Open recipe →775 · Counting & sumsCount non-empty work orders
Count filled work order cells while ignoring empty rows.
=COUNTIF(A2:A,"<>")Open recipe →776 · Counting & sumsCount blank work order notes
Find how many work orders have no note entered.
=COUNTBLANK(F2:F)Open recipe →777 · Counting & sumsCount work orders over 1000
Count work orders whose Amount is greater than 1,000.
=COUNTIF(C2:C,">1000")Open recipe →778 · Counting & sumsCount work orders between amounts
Count work orders with Amount values from 500 through 1,500.
=COUNTIFS(C2:C,">=500",C2:C,"<=1500")Open recipe →779 · Counting & sumsCount work orders between dates
Count work orders dated from July 1 through July 31, 2026.
=COUNTIFS(D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →780 · Counting & sumsCount unique completed work orders
Count distinct work order labels after keeping only Complete rows.
=COUNTUNIQUE(FILTER(A2:A,E2:E="Complete",A2:A<>""))Open recipe →781 · Counting & sumsSum completed work orders
Add Amount values only for work orders marked Complete.
=SUMIF(E2:E,"Complete",C2:C)Open recipe →782 · Counting & sumsSum work orders by region
Add Amount values for work orders assigned to North.
=SUMIF(B2:B,"North",C2:C)Open recipe →783 · Counting & sumsSum work orders between dates
Add Amount values for work orders dated within July 2026.
=SUMIFS(C2:C,D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →784 · Counting & sumsSum work orders containing text
Add Amount values when the work order note contains urgent.
=SUMIF(F2:F,"*urgent*",C2:C)Open recipe →785 · Counting & sumsAverage completed work orders
Calculate the average Amount for work orders marked Complete.
=AVERAGEIF(E2:E,"Complete",C2:C)Open recipe →786 · Counting & sumsAverage work orders without zeros
Average the Amount column while leaving zero values out of the calculation.
=AVERAGEIF(C2:C,"<>0")Open recipe →787 · Filtering & lookupFilter completed work orders
Return every work order row whose status is Complete.
=FILTER(A2:F,E2:E="Complete")Open recipe →788 · Filtering & lookupFilter work orders with AND
Return work orders that are both Complete and assigned to North.
=FILTER(A2:F,E2:E="Complete",B2:B="North")Open recipe →789 · Filtering & lookupFilter work orders with OR
Return work orders whose status is Complete or Review.
=FILTER(A2:F,(E2:E="Complete")+(E2:E="Review"))Open recipe →790 · Filtering & lookupFilter work orders containing text
Return work orders whose Notes cell contains urgent.
=FILTER(A2:F,REGEXMATCH(LOWER(F2:F),"urgent"))Open recipe →791 · Filtering & lookupLookup a work order amount
Match a work order label and return its Amount from the same table.
=XLOOKUP(H2,A2:A,C2:C,"Not found")Open recipe →792 · Filtering & lookupLast completed work order
Return the final work order label whose status is Complete.
=XLOOKUP("Complete",E2:E,A2:A,"Not found",0,-1)Open recipe →793 · ConditionsLabel completed work orders
Return Done for a Complete work order; otherwise return Pending.
=IF(E2="Complete","Done","Pending")Open recipe →794 · ConditionsLeave blank work order results blank
Keep the result empty when the work order cell is blank; otherwise double Amount.
=IF(A2="","",C2*2)Open recipe →795 · Rows & arraysWork order running total
Create a cumulative Amount total that grows down the work orders table.
=SUM($C$2:C2)Open recipe →796 · Counting & sumsCount completed properties
Count properties whose status is Complete without counting open or review rows.
=COUNTIF(E2:E,"Complete")Open recipe →797 · Counting & sumsCount open properties
Count properties that still have an Open status.
=COUNTIF(E2:E,"Open")Open recipe →798 · Counting & sumsCount properties by region
Count properties assigned to the North region and change the criterion for another region.
=COUNTIF(B2:B,"North")Open recipe →799 · Counting & sumsCount properties containing text
Count properties whose notes contain the word urgent anywhere in the cell.
=COUNTIF(F2:F,"*urgent*")Open recipe →800 · Counting & sumsCount non-empty properties
Count filled property cells while ignoring empty rows.
=COUNTIF(A2:A,"<>")Open recipe →801 · Counting & sumsCount blank property notes
Find how many properties have no note entered.
=COUNTBLANK(F2:F)Open recipe →802 · Counting & sumsCount properties over 1000
Count properties whose Amount is greater than 1,000.
=COUNTIF(C2:C,">1000")Open recipe →803 · Counting & sumsCount properties between amounts
Count properties with Amount values from 500 through 1,500.
=COUNTIFS(C2:C,">=500",C2:C,"<=1500")Open recipe →804 · Counting & sumsCount properties between dates
Count properties dated from July 1 through July 31, 2026.
=COUNTIFS(D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →805 · Counting & sumsCount unique completed properties
Count distinct property labels after keeping only Complete rows.
=COUNTUNIQUE(FILTER(A2:A,E2:E="Complete",A2:A<>""))Open recipe →806 · Counting & sumsSum completed properties
Add Amount values only for properties marked Complete.
=SUMIF(E2:E,"Complete",C2:C)Open recipe →807 · Counting & sumsSum properties by region
Add Amount values for properties assigned to North.
=SUMIF(B2:B,"North",C2:C)Open recipe →808 · Counting & sumsSum properties between dates
Add Amount values for properties dated within July 2026.
=SUMIFS(C2:C,D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →809 · Counting & sumsSum properties containing text
Add Amount values when the property note contains urgent.
=SUMIF(F2:F,"*urgent*",C2:C)Open recipe →810 · Counting & sumsAverage completed properties
Calculate the average Amount for properties marked Complete.
=AVERAGEIF(E2:E,"Complete",C2:C)Open recipe →811 · Counting & sumsAverage properties without zeros
Average the Amount column while leaving zero values out of the calculation.
=AVERAGEIF(C2:C,"<>0")Open recipe →812 · Filtering & lookupFilter completed properties
Return every property row whose status is Complete.
=FILTER(A2:F,E2:E="Complete")Open recipe →813 · Filtering & lookupFilter properties with AND
Return properties that are both Complete and assigned to North.
=FILTER(A2:F,E2:E="Complete",B2:B="North")Open recipe →814 · Filtering & lookupFilter properties with OR
Return properties whose status is Complete or Review.
=FILTER(A2:F,(E2:E="Complete")+(E2:E="Review"))Open recipe →815 · Filtering & lookupFilter properties containing text
Return properties whose Notes cell contains urgent.
=FILTER(A2:F,REGEXMATCH(LOWER(F2:F),"urgent"))Open recipe →816 · Filtering & lookupLookup a property amount
Match a property label and return its Amount from the same table.
=XLOOKUP(H2,A2:A,C2:C,"Not found")Open recipe →817 · Filtering & lookupLast completed property
Return the final property label whose status is Complete.
=XLOOKUP("Complete",E2:E,A2:A,"Not found",0,-1)Open recipe →818 · ConditionsLabel completed properties
Return Done for a Complete property; otherwise return Pending.
=IF(E2="Complete","Done","Pending")Open recipe →819 · ConditionsLeave blank property results blank
Keep the result empty when the property cell is blank; otherwise double Amount.
=IF(A2="","",C2*2)Open recipe →820 · Rows & arraysProperty running total
Create a cumulative Amount total that grows down the properties table.
=SUM($C$2:C2)Open recipe →821 · Counting & sumsCount completed rentals
Count rentals whose status is Complete without counting open or review rows.
=COUNTIF(E2:E,"Complete")Open recipe →822 · Counting & sumsCount open rentals
Count rentals that still have an Open status.
=COUNTIF(E2:E,"Open")Open recipe →823 · Counting & sumsCount rentals by region
Count rentals assigned to the North region and change the criterion for another region.
=COUNTIF(B2:B,"North")Open recipe →824 · Counting & sumsCount rentals containing text
Count rentals whose notes contain the word urgent anywhere in the cell.
=COUNTIF(F2:F,"*urgent*")Open recipe →825 · Counting & sumsCount non-empty rentals
Count filled rental cells while ignoring empty rows.
=COUNTIF(A2:A,"<>")Open recipe →826 · Counting & sumsCount blank rental notes
Find how many rentals have no note entered.
=COUNTBLANK(F2:F)Open recipe →827 · Counting & sumsCount rentals over 1000
Count rentals whose Amount is greater than 1,000.
=COUNTIF(C2:C,">1000")Open recipe →828 · Counting & sumsCount rentals between amounts
Count rentals with Amount values from 500 through 1,500.
=COUNTIFS(C2:C,">=500",C2:C,"<=1500")Open recipe →829 · Counting & sumsCount rentals between dates
Count rentals dated from July 1 through July 31, 2026.
=COUNTIFS(D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →830 · Counting & sumsCount unique completed rentals
Count distinct rental labels after keeping only Complete rows.
=COUNTUNIQUE(FILTER(A2:A,E2:E="Complete",A2:A<>""))Open recipe →831 · Counting & sumsSum completed rentals
Add Amount values only for rentals marked Complete.
=SUMIF(E2:E,"Complete",C2:C)Open recipe →832 · Counting & sumsSum rentals by region
Add Amount values for rentals assigned to North.
=SUMIF(B2:B,"North",C2:C)Open recipe →833 · Counting & sumsSum rentals between dates
Add Amount values for rentals dated within July 2026.
=SUMIFS(C2:C,D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →834 · Counting & sumsSum rentals containing text
Add Amount values when the rental note contains urgent.
=SUMIF(F2:F,"*urgent*",C2:C)Open recipe →835 · Counting & sumsAverage completed rentals
Calculate the average Amount for rentals marked Complete.
=AVERAGEIF(E2:E,"Complete",C2:C)Open recipe →836 · Counting & sumsAverage rentals without zeros
Average the Amount column while leaving zero values out of the calculation.
=AVERAGEIF(C2:C,"<>0")Open recipe →837 · Filtering & lookupFilter completed rentals
Return every rental row whose status is Complete.
=FILTER(A2:F,E2:E="Complete")Open recipe →838 · Filtering & lookupFilter rentals with AND
Return rentals that are both Complete and assigned to North.
=FILTER(A2:F,E2:E="Complete",B2:B="North")Open recipe →839 · Filtering & lookupFilter rentals with OR
Return rentals whose status is Complete or Review.
=FILTER(A2:F,(E2:E="Complete")+(E2:E="Review"))Open recipe →840 · Filtering & lookupFilter rentals containing text
Return rentals whose Notes cell contains urgent.
=FILTER(A2:F,REGEXMATCH(LOWER(F2:F),"urgent"))Open recipe →841 · Filtering & lookupLookup a rental amount
Match a rental label and return its Amount from the same table.
=XLOOKUP(H2,A2:A,C2:C,"Not found")Open recipe →842 · Filtering & lookupLast completed rental
Return the final rental label whose status is Complete.
=XLOOKUP("Complete",E2:E,A2:A,"Not found",0,-1)Open recipe →843 · ConditionsLabel completed rentals
Return Done for a Complete rental; otherwise return Pending.
=IF(E2="Complete","Done","Pending")Open recipe →844 · ConditionsLeave blank rental results blank
Keep the result empty when the rental cell is blank; otherwise double Amount.
=IF(A2="","",C2*2)Open recipe →845 · Rows & arraysRental running total
Create a cumulative Amount total that grows down the rentals table.
=SUM($C$2:C2)Open recipe →846 · Counting & sumsCount completed assets
Count assets whose status is Complete without counting open or review rows.
=COUNTIF(E2:E,"Complete")Open recipe →847 · Counting & sumsCount open assets
Count assets that still have an Open status.
=COUNTIF(E2:E,"Open")Open recipe →848 · Counting & sumsCount assets by region
Count assets assigned to the North region and change the criterion for another region.
=COUNTIF(B2:B,"North")Open recipe →849 · Counting & sumsCount assets containing text
Count assets whose notes contain the word urgent anywhere in the cell.
=COUNTIF(F2:F,"*urgent*")Open recipe →850 · Counting & sumsCount non-empty assets
Count filled asset cells while ignoring empty rows.
=COUNTIF(A2:A,"<>")Open recipe →851 · Counting & sumsCount blank asset notes
Find how many assets have no note entered.
=COUNTBLANK(F2:F)Open recipe →852 · Counting & sumsCount assets over 1000
Count assets whose Amount is greater than 1,000.
=COUNTIF(C2:C,">1000")Open recipe →853 · Counting & sumsCount assets between amounts
Count assets with Amount values from 500 through 1,500.
=COUNTIFS(C2:C,">=500",C2:C,"<=1500")Open recipe →854 · Counting & sumsCount assets between dates
Count assets dated from July 1 through July 31, 2026.
=COUNTIFS(D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →855 · Counting & sumsCount unique completed assets
Count distinct asset labels after keeping only Complete rows.
=COUNTUNIQUE(FILTER(A2:A,E2:E="Complete",A2:A<>""))Open recipe →856 · Counting & sumsSum completed assets
Add Amount values only for assets marked Complete.
=SUMIF(E2:E,"Complete",C2:C)Open recipe →857 · Counting & sumsSum assets by region
Add Amount values for assets assigned to North.
=SUMIF(B2:B,"North",C2:C)Open recipe →858 · Counting & sumsSum assets between dates
Add Amount values for assets dated within July 2026.
=SUMIFS(C2:C,D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →859 · Counting & sumsSum assets containing text
Add Amount values when the asset note contains urgent.
=SUMIF(F2:F,"*urgent*",C2:C)Open recipe →860 · Counting & sumsAverage completed assets
Calculate the average Amount for assets marked Complete.
=AVERAGEIF(E2:E,"Complete",C2:C)Open recipe →861 · Counting & sumsAverage assets without zeros
Average the Amount column while leaving zero values out of the calculation.
=AVERAGEIF(C2:C,"<>0")Open recipe →862 · Filtering & lookupFilter completed assets
Return every asset row whose status is Complete.
=FILTER(A2:F,E2:E="Complete")Open recipe →863 · Filtering & lookupFilter assets with AND
Return assets that are both Complete and assigned to North.
=FILTER(A2:F,E2:E="Complete",B2:B="North")Open recipe →864 · Filtering & lookupFilter assets with OR
Return assets whose status is Complete or Review.
=FILTER(A2:F,(E2:E="Complete")+(E2:E="Review"))Open recipe →865 · Filtering & lookupFilter assets containing text
Return assets whose Notes cell contains urgent.
=FILTER(A2:F,REGEXMATCH(LOWER(F2:F),"urgent"))Open recipe →866 · Filtering & lookupLookup a asset amount
Match a asset label and return its Amount from the same table.
=XLOOKUP(H2,A2:A,C2:C,"Not found")Open recipe →867 · Filtering & lookupLast completed asset
Return the final asset label whose status is Complete.
=XLOOKUP("Complete",E2:E,A2:A,"Not found",0,-1)Open recipe →868 · ConditionsLabel completed assets
Return Done for a Complete asset; otherwise return Pending.
=IF(E2="Complete","Done","Pending")Open recipe →869 · ConditionsLeave blank asset results blank
Keep the result empty when the asset cell is blank; otherwise double Amount.
=IF(A2="","",C2*2)Open recipe →870 · Rows & arraysAsset running total
Create a cumulative Amount total that grows down the assets table.
=SUM($C$2:C2)Open recipe →871 · Counting & sumsCount completed accounts
Count accounts whose status is Complete without counting open or review rows.
=COUNTIF(E2:E,"Complete")Open recipe →872 · Counting & sumsCount open accounts
Count accounts that still have an Open status.
=COUNTIF(E2:E,"Open")Open recipe →873 · Counting & sumsCount accounts by region
Count accounts assigned to the North region and change the criterion for another region.
=COUNTIF(B2:B,"North")Open recipe →874 · Counting & sumsCount accounts containing text
Count accounts whose notes contain the word urgent anywhere in the cell.
=COUNTIF(F2:F,"*urgent*")Open recipe →875 · Counting & sumsCount non-empty accounts
Count filled account cells while ignoring empty rows.
=COUNTIF(A2:A,"<>")Open recipe →876 · Counting & sumsCount blank account notes
Find how many accounts have no note entered.
=COUNTBLANK(F2:F)Open recipe →877 · Counting & sumsCount accounts over 1000
Count accounts whose Amount is greater than 1,000.
=COUNTIF(C2:C,">1000")Open recipe →878 · Counting & sumsCount accounts between amounts
Count accounts with Amount values from 500 through 1,500.
=COUNTIFS(C2:C,">=500",C2:C,"<=1500")Open recipe →879 · Counting & sumsCount accounts between dates
Count accounts dated from July 1 through July 31, 2026.
=COUNTIFS(D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →880 · Counting & sumsCount unique completed accounts
Count distinct account labels after keeping only Complete rows.
=COUNTUNIQUE(FILTER(A2:A,E2:E="Complete",A2:A<>""))Open recipe →881 · Counting & sumsSum completed accounts
Add Amount values only for accounts marked Complete.
=SUMIF(E2:E,"Complete",C2:C)Open recipe →882 · Counting & sumsSum accounts by region
Add Amount values for accounts assigned to North.
=SUMIF(B2:B,"North",C2:C)Open recipe →883 · Counting & sumsSum accounts between dates
Add Amount values for accounts dated within July 2026.
=SUMIFS(C2:C,D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →884 · Counting & sumsSum accounts containing text
Add Amount values when the account note contains urgent.
=SUMIF(F2:F,"*urgent*",C2:C)Open recipe →885 · Counting & sumsAverage completed accounts
Calculate the average Amount for accounts marked Complete.
=AVERAGEIF(E2:E,"Complete",C2:C)Open recipe →886 · Counting & sumsAverage accounts without zeros
Average the Amount column while leaving zero values out of the calculation.
=AVERAGEIF(C2:C,"<>0")Open recipe →887 · Filtering & lookupFilter completed accounts
Return every account row whose status is Complete.
=FILTER(A2:F,E2:E="Complete")Open recipe →888 · Filtering & lookupFilter accounts with AND
Return accounts that are both Complete and assigned to North.
=FILTER(A2:F,E2:E="Complete",B2:B="North")Open recipe →889 · Filtering & lookupFilter accounts with OR
Return accounts whose status is Complete or Review.
=FILTER(A2:F,(E2:E="Complete")+(E2:E="Review"))Open recipe →890 · Filtering & lookupFilter accounts containing text
Return accounts whose Notes cell contains urgent.
=FILTER(A2:F,REGEXMATCH(LOWER(F2:F),"urgent"))Open recipe →891 · Filtering & lookupLookup a account amount
Match a account label and return its Amount from the same table.
=XLOOKUP(H2,A2:A,C2:C,"Not found")Open recipe →892 · Filtering & lookupLast completed account
Return the final account label whose status is Complete.
=XLOOKUP("Complete",E2:E,A2:A,"Not found",0,-1)Open recipe →893 · ConditionsLabel completed accounts
Return Done for a Complete account; otherwise return Pending.
=IF(E2="Complete","Done","Pending")Open recipe →894 · ConditionsLeave blank account results blank
Keep the result empty when the account cell is blank; otherwise double Amount.
=IF(A2="","",C2*2)Open recipe →895 · Rows & arraysAccount running total
Create a cumulative Amount total that grows down the accounts table.
=SUM($C$2:C2)Open recipe →896 · Counting & sumsCount completed contracts
Count contracts whose status is Complete without counting open or review rows.
=COUNTIF(E2:E,"Complete")Open recipe →897 · Counting & sumsCount open contracts
Count contracts that still have an Open status.
=COUNTIF(E2:E,"Open")Open recipe →898 · Counting & sumsCount contracts by region
Count contracts assigned to the North region and change the criterion for another region.
=COUNTIF(B2:B,"North")Open recipe →899 · Counting & sumsCount contracts containing text
Count contracts whose notes contain the word urgent anywhere in the cell.
=COUNTIF(F2:F,"*urgent*")Open recipe →900 · Counting & sumsCount non-empty contracts
Count filled contract cells while ignoring empty rows.
=COUNTIF(A2:A,"<>")Open recipe →901 · Counting & sumsCount blank contract notes
Find how many contracts have no note entered.
=COUNTBLANK(F2:F)Open recipe →902 · Counting & sumsCount contracts over 1000
Count contracts whose Amount is greater than 1,000.
=COUNTIF(C2:C,">1000")Open recipe →903 · Counting & sumsCount contracts between amounts
Count contracts with Amount values from 500 through 1,500.
=COUNTIFS(C2:C,">=500",C2:C,"<=1500")Open recipe →904 · Counting & sumsCount contracts between dates
Count contracts dated from July 1 through July 31, 2026.
=COUNTIFS(D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →905 · Counting & sumsCount unique completed contracts
Count distinct contract labels after keeping only Complete rows.
=COUNTUNIQUE(FILTER(A2:A,E2:E="Complete",A2:A<>""))Open recipe →906 · Counting & sumsSum completed contracts
Add Amount values only for contracts marked Complete.
=SUMIF(E2:E,"Complete",C2:C)Open recipe →907 · Counting & sumsSum contracts by region
Add Amount values for contracts assigned to North.
=SUMIF(B2:B,"North",C2:C)Open recipe →908 · Counting & sumsSum contracts between dates
Add Amount values for contracts dated within July 2026.
=SUMIFS(C2:C,D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →909 · Counting & sumsSum contracts containing text
Add Amount values when the contract note contains urgent.
=SUMIF(F2:F,"*urgent*",C2:C)Open recipe →910 · Counting & sumsAverage completed contracts
Calculate the average Amount for contracts marked Complete.
=AVERAGEIF(E2:E,"Complete",C2:C)Open recipe →911 · Counting & sumsAverage contracts without zeros
Average the Amount column while leaving zero values out of the calculation.
=AVERAGEIF(C2:C,"<>0")Open recipe →912 · Filtering & lookupFilter completed contracts
Return every contract row whose status is Complete.
=FILTER(A2:F,E2:E="Complete")Open recipe →913 · Filtering & lookupFilter contracts with AND
Return contracts that are both Complete and assigned to North.
=FILTER(A2:F,E2:E="Complete",B2:B="North")Open recipe →914 · Filtering & lookupFilter contracts with OR
Return contracts whose status is Complete or Review.
=FILTER(A2:F,(E2:E="Complete")+(E2:E="Review"))Open recipe →915 · Filtering & lookupFilter contracts containing text
Return contracts whose Notes cell contains urgent.
=FILTER(A2:F,REGEXMATCH(LOWER(F2:F),"urgent"))Open recipe →916 · Filtering & lookupLookup a contract amount
Match a contract label and return its Amount from the same table.
=XLOOKUP(H2,A2:A,C2:C,"Not found")Open recipe →917 · Filtering & lookupLast completed contract
Return the final contract label whose status is Complete.
=XLOOKUP("Complete",E2:E,A2:A,"Not found",0,-1)Open recipe →918 · ConditionsLabel completed contracts
Return Done for a Complete contract; otherwise return Pending.
=IF(E2="Complete","Done","Pending")Open recipe →919 · ConditionsLeave blank contract results blank
Keep the result empty when the contract cell is blank; otherwise double Amount.
=IF(A2="","",C2*2)Open recipe →920 · Rows & arraysContract running total
Create a cumulative Amount total that grows down the contracts table.
=SUM($C$2:C2)Open recipe →921 · Counting & sumsCount completed meetings
Count meetings whose status is Complete without counting open or review rows.
=COUNTIF(E2:E,"Complete")Open recipe →922 · Counting & sumsCount open meetings
Count meetings that still have an Open status.
=COUNTIF(E2:E,"Open")Open recipe →923 · Counting & sumsCount meetings by region
Count meetings assigned to the North region and change the criterion for another region.
=COUNTIF(B2:B,"North")Open recipe →924 · Counting & sumsCount meetings containing text
Count meetings whose notes contain the word urgent anywhere in the cell.
=COUNTIF(F2:F,"*urgent*")Open recipe →925 · Counting & sumsCount non-empty meetings
Count filled meeting cells while ignoring empty rows.
=COUNTIF(A2:A,"<>")Open recipe →926 · Counting & sumsCount blank meeting notes
Find how many meetings have no note entered.
=COUNTBLANK(F2:F)Open recipe →927 · Counting & sumsCount meetings over 1000
Count meetings whose Amount is greater than 1,000.
=COUNTIF(C2:C,">1000")Open recipe →928 · Counting & sumsCount meetings between amounts
Count meetings with Amount values from 500 through 1,500.
=COUNTIFS(C2:C,">=500",C2:C,"<=1500")Open recipe →929 · Counting & sumsCount meetings between dates
Count meetings dated from July 1 through July 31, 2026.
=COUNTIFS(D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →930 · Counting & sumsCount unique completed meetings
Count distinct meeting labels after keeping only Complete rows.
=COUNTUNIQUE(FILTER(A2:A,E2:E="Complete",A2:A<>""))Open recipe →931 · Counting & sumsSum completed meetings
Add Amount values only for meetings marked Complete.
=SUMIF(E2:E,"Complete",C2:C)Open recipe →932 · Counting & sumsSum meetings by region
Add Amount values for meetings assigned to North.
=SUMIF(B2:B,"North",C2:C)Open recipe →933 · Counting & sumsSum meetings between dates
Add Amount values for meetings dated within July 2026.
=SUMIFS(C2:C,D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →934 · Counting & sumsSum meetings containing text
Add Amount values when the meeting note contains urgent.
=SUMIF(F2:F,"*urgent*",C2:C)Open recipe →935 · Counting & sumsAverage completed meetings
Calculate the average Amount for meetings marked Complete.
=AVERAGEIF(E2:E,"Complete",C2:C)Open recipe →936 · Counting & sumsAverage meetings without zeros
Average the Amount column while leaving zero values out of the calculation.
=AVERAGEIF(C2:C,"<>0")Open recipe →937 · Filtering & lookupFilter completed meetings
Return every meeting row whose status is Complete.
=FILTER(A2:F,E2:E="Complete")Open recipe →938 · Filtering & lookupFilter meetings with AND
Return meetings that are both Complete and assigned to North.
=FILTER(A2:F,E2:E="Complete",B2:B="North")Open recipe →939 · Filtering & lookupFilter meetings with OR
Return meetings whose status is Complete or Review.
=FILTER(A2:F,(E2:E="Complete")+(E2:E="Review"))Open recipe →940 · Filtering & lookupFilter meetings containing text
Return meetings whose Notes cell contains urgent.
=FILTER(A2:F,REGEXMATCH(LOWER(F2:F),"urgent"))Open recipe →941 · Filtering & lookupLookup a meeting amount
Match a meeting label and return its Amount from the same table.
=XLOOKUP(H2,A2:A,C2:C,"Not found")Open recipe →942 · Filtering & lookupLast completed meeting
Return the final meeting label whose status is Complete.
=XLOOKUP("Complete",E2:E,A2:A,"Not found",0,-1)Open recipe →943 · ConditionsLabel completed meetings
Return Done for a Complete meeting; otherwise return Pending.
=IF(E2="Complete","Done","Pending")Open recipe →944 · ConditionsLeave blank meeting results blank
Keep the result empty when the meeting cell is blank; otherwise double Amount.
=IF(A2="","",C2*2)Open recipe →945 · Rows & arraysMeeting running total
Create a cumulative Amount total that grows down the meetings table.
=SUM($C$2:C2)Open recipe →946 · Counting & sumsCount completed timesheet entries
Count timesheet entries whose status is Complete without counting open or review rows.
=COUNTIF(E2:E,"Complete")Open recipe →947 · Counting & sumsCount open timesheet entries
Count timesheet entries that still have an Open status.
=COUNTIF(E2:E,"Open")Open recipe →948 · Counting & sumsCount timesheet entries by region
Count timesheet entries assigned to the North region and change the criterion for another region.
=COUNTIF(B2:B,"North")Open recipe →949 · Counting & sumsCount timesheet entries containing text
Count timesheet entries whose notes contain the word urgent anywhere in the cell.
=COUNTIF(F2:F,"*urgent*")Open recipe →950 · Counting & sumsCount non-empty timesheet entries
Count filled entry cells while ignoring empty rows.
=COUNTIF(A2:A,"<>")Open recipe →951 · Counting & sumsCount blank timesheet entry notes
Find how many timesheet entries have no note entered.
=COUNTBLANK(F2:F)Open recipe →952 · Counting & sumsCount timesheet entries over 1000
Count timesheet entries whose Amount is greater than 1,000.
=COUNTIF(C2:C,">1000")Open recipe →953 · Counting & sumsCount timesheet entries between amounts
Count timesheet entries with Amount values from 500 through 1,500.
=COUNTIFS(C2:C,">=500",C2:C,"<=1500")Open recipe →954 · Counting & sumsCount timesheet entries between dates
Count timesheet entries dated from July 1 through July 31, 2026.
=COUNTIFS(D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →955 · Counting & sumsCount unique completed timesheet entries
Count distinct entry labels after keeping only Complete rows.
=COUNTUNIQUE(FILTER(A2:A,E2:E="Complete",A2:A<>""))Open recipe →956 · Counting & sumsSum completed timesheet entries
Add Amount values only for timesheet entries marked Complete.
=SUMIF(E2:E,"Complete",C2:C)Open recipe →957 · Counting & sumsSum timesheet entries by region
Add Amount values for timesheet entries assigned to North.
=SUMIF(B2:B,"North",C2:C)Open recipe →958 · Counting & sumsSum timesheet entries between dates
Add Amount values for timesheet entries dated within July 2026.
=SUMIFS(C2:C,D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →959 · Counting & sumsSum timesheet entries containing text
Add Amount values when the timesheet entry note contains urgent.
=SUMIF(F2:F,"*urgent*",C2:C)Open recipe →960 · Counting & sumsAverage completed timesheet entries
Calculate the average Amount for timesheet entries marked Complete.
=AVERAGEIF(E2:E,"Complete",C2:C)Open recipe →961 · Counting & sumsAverage timesheet entries without zeros
Average the Amount column while leaving zero values out of the calculation.
=AVERAGEIF(C2:C,"<>0")Open recipe →962 · Filtering & lookupFilter completed timesheet entries
Return every timesheet entry row whose status is Complete.
=FILTER(A2:F,E2:E="Complete")Open recipe →963 · Filtering & lookupFilter timesheet entries with AND
Return timesheet entries that are both Complete and assigned to North.
=FILTER(A2:F,E2:E="Complete",B2:B="North")Open recipe →964 · Filtering & lookupFilter timesheet entries with OR
Return timesheet entries whose status is Complete or Review.
=FILTER(A2:F,(E2:E="Complete")+(E2:E="Review"))Open recipe →965 · Filtering & lookupFilter timesheet entries containing text
Return timesheet entries whose Notes cell contains urgent.
=FILTER(A2:F,REGEXMATCH(LOWER(F2:F),"urgent"))Open recipe →966 · Filtering & lookupLookup a timesheet entry amount
Match a entry label and return its Amount from the same table.
=XLOOKUP(H2,A2:A,C2:C,"Not found")Open recipe →967 · Filtering & lookupLast completed timesheet entry
Return the final entry label whose status is Complete.
=XLOOKUP("Complete",E2:E,A2:A,"Not found",0,-1)Open recipe →968 · ConditionsLabel completed timesheet entries
Return Done for a Complete timesheet entry; otherwise return Pending.
=IF(E2="Complete","Done","Pending")Open recipe →969 · ConditionsLeave blank timesheet entry results blank
Keep the result empty when the entry cell is blank; otherwise double Amount.
=IF(A2="","",C2*2)Open recipe →970 · Rows & arraysEntry running total
Create a cumulative Amount total that grows down the timesheet entries table.
=SUM($C$2:C2)Open recipe →971 · Counting & sumsCount completed purchase orders
Count purchase orders whose status is Complete without counting open or review rows.
=COUNTIF(E2:E,"Complete")Open recipe →972 · Counting & sumsCount open purchase orders
Count purchase orders that still have an Open status.
=COUNTIF(E2:E,"Open")Open recipe →973 · Counting & sumsCount purchase orders by region
Count purchase orders assigned to the North region and change the criterion for another region.
=COUNTIF(B2:B,"North")Open recipe →974 · Counting & sumsCount purchase orders containing text
Count purchase orders whose notes contain the word urgent anywhere in the cell.
=COUNTIF(F2:F,"*urgent*")Open recipe →975 · Counting & sumsCount non-empty purchase orders
Count filled purchase order cells while ignoring empty rows.
=COUNTIF(A2:A,"<>")Open recipe →976 · Counting & sumsCount blank purchase order notes
Find how many purchase orders have no note entered.
=COUNTBLANK(F2:F)Open recipe →977 · Counting & sumsCount purchase orders over 1000
Count purchase orders whose Amount is greater than 1,000.
=COUNTIF(C2:C,">1000")Open recipe →978 · Counting & sumsCount purchase orders between amounts
Count purchase orders with Amount values from 500 through 1,500.
=COUNTIFS(C2:C,">=500",C2:C,"<=1500")Open recipe →979 · Counting & sumsCount purchase orders between dates
Count purchase orders dated from July 1 through July 31, 2026.
=COUNTIFS(D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →980 · Counting & sumsCount unique completed purchase orders
Count distinct purchase order labels after keeping only Complete rows.
=COUNTUNIQUE(FILTER(A2:A,E2:E="Complete",A2:A<>""))Open recipe →981 · Counting & sumsSum completed purchase orders
Add Amount values only for purchase orders marked Complete.
=SUMIF(E2:E,"Complete",C2:C)Open recipe →982 · Counting & sumsSum purchase orders by region
Add Amount values for purchase orders assigned to North.
=SUMIF(B2:B,"North",C2:C)Open recipe →983 · Counting & sumsSum purchase orders between dates
Add Amount values for purchase orders dated within July 2026.
=SUMIFS(C2:C,D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →984 · Counting & sumsSum purchase orders containing text
Add Amount values when the purchase order note contains urgent.
=SUMIF(F2:F,"*urgent*",C2:C)Open recipe →985 · Counting & sumsAverage completed purchase orders
Calculate the average Amount for purchase orders marked Complete.
=AVERAGEIF(E2:E,"Complete",C2:C)Open recipe →986 · Counting & sumsAverage purchase orders without zeros
Average the Amount column while leaving zero values out of the calculation.
=AVERAGEIF(C2:C,"<>0")Open recipe →987 · Filtering & lookupFilter completed purchase orders
Return every purchase order row whose status is Complete.
=FILTER(A2:F,E2:E="Complete")Open recipe →988 · Filtering & lookupFilter purchase orders with AND
Return purchase orders that are both Complete and assigned to North.
=FILTER(A2:F,E2:E="Complete",B2:B="North")Open recipe →989 · Filtering & lookupFilter purchase orders with OR
Return purchase orders whose status is Complete or Review.
=FILTER(A2:F,(E2:E="Complete")+(E2:E="Review"))Open recipe →990 · Filtering & lookupFilter purchase orders containing text
Return purchase orders whose Notes cell contains urgent.
=FILTER(A2:F,REGEXMATCH(LOWER(F2:F),"urgent"))Open recipe →991 · Filtering & lookupLookup a purchase order amount
Match a purchase order label and return its Amount from the same table.
=XLOOKUP(H2,A2:A,C2:C,"Not found")Open recipe →992 · Filtering & lookupLast completed purchase order
Return the final purchase order label whose status is Complete.
=XLOOKUP("Complete",E2:E,A2:A,"Not found",0,-1)Open recipe →993 · ConditionsLabel completed purchase orders
Return Done for a Complete purchase order; otherwise return Pending.
=IF(E2="Complete","Done","Pending")Open recipe →994 · ConditionsLeave blank purchase order results blank
Keep the result empty when the purchase order cell is blank; otherwise double Amount.
=IF(A2="","",C2*2)Open recipe →995 · Rows & arraysPurchase order running total
Create a cumulative Amount total that grows down the purchase orders table.
=SUM($C$2:C2)Open recipe →996 · Counting & sumsCount completed deliveries
Count deliveries whose status is Complete without counting open or review rows.
=COUNTIF(E2:E,"Complete")Open recipe →997 · Counting & sumsCount open deliveries
Count deliveries that still have an Open status.
=COUNTIF(E2:E,"Open")Open recipe →998 · Counting & sumsCount deliveries by region
Count deliveries assigned to the North region and change the criterion for another region.
=COUNTIF(B2:B,"North")Open recipe →999 · Counting & sumsCount deliveries containing text
Count deliveries whose notes contain the word urgent anywhere in the cell.
=COUNTIF(F2:F,"*urgent*")Open recipe →1000 · Counting & sumsCount non-empty deliveries
Count filled delivery cells while ignoring empty rows.
=COUNTIF(A2:A,"<>")Open recipe →1001 · Counting & sumsCount blank delivery notes
Find how many deliveries have no note entered.
=COUNTBLANK(F2:F)Open recipe →1002 · Counting & sumsCount deliveries over 1000
Count deliveries whose Amount is greater than 1,000.
=COUNTIF(C2:C,">1000")Open recipe →1003 · Counting & sumsCount deliveries between amounts
Count deliveries with Amount values from 500 through 1,500.
=COUNTIFS(C2:C,">=500",C2:C,"<=1500")Open recipe →1004 · Counting & sumsCount deliveries between dates
Count deliveries dated from July 1 through July 31, 2026.
=COUNTIFS(D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →1005 · Counting & sumsCount unique completed deliveries
Count distinct delivery labels after keeping only Complete rows.
=COUNTUNIQUE(FILTER(A2:A,E2:E="Complete",A2:A<>""))Open recipe →1006 · Counting & sumsSum completed deliveries
Add Amount values only for deliveries marked Complete.
=SUMIF(E2:E,"Complete",C2:C)Open recipe →1007 · Counting & sumsSum deliveries by region
Add Amount values for deliveries assigned to North.
=SUMIF(B2:B,"North",C2:C)Open recipe →1008 · Counting & sumsSum deliveries between dates
Add Amount values for deliveries dated within July 2026.
=SUMIFS(C2:C,D2:D,">="&DATE(2026,7,1),D2:D,"<="&DATE(2026,7,31))Open recipe →1009 · Counting & sumsSum deliveries containing text
Add Amount values when the delivery note contains urgent.
=SUMIF(F2:F,"*urgent*",C2:C)Open recipe →1010 · Counting & sumsAverage completed deliveries
Calculate the average Amount for deliveries marked Complete.
=AVERAGEIF(E2:E,"Complete",C2:C)Open recipe →1011 · Counting & sumsAverage deliveries without zeros
Average the Amount column while leaving zero values out of the calculation.
=AVERAGEIF(C2:C,"<>0")Open recipe →1012 · Filtering & lookupFilter completed deliveries
Return every delivery row whose status is Complete.
=FILTER(A2:F,E2:E="Complete")Open recipe →1013 · Filtering & lookupFilter deliveries with AND
Return deliveries that are both Complete and assigned to North.
=FILTER(A2:F,E2:E="Complete",B2:B="North")Open recipe →1014 · Filtering & lookupFilter deliveries with OR
Return deliveries whose status is Complete or Review.
=FILTER(A2:F,(E2:E="Complete")+(E2:E="Review"))Open recipe →1015 · Filtering & lookupFilter deliveries containing text
Return deliveries whose Notes cell contains urgent.
=FILTER(A2:F,REGEXMATCH(LOWER(F2:F),"urgent"))Open recipe →1016 · Filtering & lookupLookup a delivery amount
Match a delivery label and return its Amount from the same table.
=XLOOKUP(H2,A2:A,C2:C,"Not found")Open recipe →1017 · Filtering & lookupLast completed delivery
Return the final delivery label whose status is Complete.
=XLOOKUP("Complete",E2:E,A2:A,"Not found",0,-1)Open recipe →1018 · ConditionsLabel completed deliveries
Return Done for a Complete delivery; otherwise return Pending.
=IF(E2="Complete","Done","Pending")Open recipe →1019 · ConditionsLeave blank delivery results blank
Keep the result empty when the delivery cell is blank; otherwise double Amount.
=IF(A2="","",C2*2)Open recipe →1020 · Rows & arraysDelivery running total
Create a cumulative Amount total that grows down the deliveries table.
=SUM($C$2:C2)Open recipe →