AI Assistant
Help Center AI Assistant is now available
Got questions about Lark? Use our AI chat to find the answers.
00:00
Click and hold to drag
Got It
Try Now
Use the COUNTIF function for Base

Use the COUNTIF function for Base

2 min read
I. Intro
The COUNTIF function can be used to count the number of records that meet a specific condition. It is commonly used for data analysis, sales management, financial statistics, and more. For example, you can use the COUNTIF function to calculate the sales amount of products that meet specified conditions.
Arguments
COUNTIF(LIST, expression)
  • LIST: The target field or table to be counted.
  • expression: The condition for assessing the data.
Note: COUNTIF is often used with CurrentValue. For more details, see Overview of statistical functions and CurrentValue in Base.
II. Steps
  1. Open the base, and click the + icon on the right side to create a new field. Enter a field title, and select Formula as the field type.
250px|700px|reset
  1. In the formula editor, enter the COUNTIF function, select the table or field, and enter the arguments as needed.
  • For example, if you want to count the number of students who scored more than 80 on the exam, the following formula can be used: [Table].COUNTIF(CurrentValue.[score]>80). As shown in the image below, the total number of students with scores over 80 is 3.
250px|700px|reset
250px|700px|reset
III. Use cases
Count the number of items that meet condition(s)
Single condition
Scenario: Count the number of goods in all products with sales greater than 1000.
Formula: [Sales Table].COUNTIF(CurrentValue.[Sales Amount]>1000)
250px|700px|reset
250px|700px|reset
Multiple conditions
Scenario: Count all items with a sales sum greater than 1000 and with inventory of less than 500.
Formula: [Sales Table].COUNTIF(CurrentValue.[Sales Amount]>1000&&CurrentValue.[Inventory<500)
250px|700px|reset
250px|700px|reset
Check whether values match
Scenario: Check whether the inventory quantity matches the number in the system.
Formula: [Inventory].COUNTIF(CurrentValue=Quantity])
250px|700px|reset
250px|700px|reset
Check whether values are duplicated
Scenario: Check whether the product name is duplicated.
Formula: IF(AND[Sales Table].COUNTIF(CurrentValue.[Inventory Name]=[Inventory Name])>1,[Inventory Name].COUNTIF(CurrentValue!="")),"Duplicate","")
250px|700px|reset
250px|700px|reset
Check whether a field is empty
Scenario: Check whether there are product names left empty.
Formula: [Product name].COUNTIF(CurrentValue!="")
250px|700px|reset
250px|700px|reset
IV. FAQs
Can the LIST argument in the COUNTIF function be a field that contains multiple values?
No. COUNTIF cannot count fields with multiple values, such as a person field that contains multiple members. To use a field containing multiple values in the LIST argument, you can use the LISTCOMBINE function to combine the values in the field.
Written by: Lark Help Center
Updated on 2025-01-28
How satisfied are you with this content?
Thank you for your feedback!
Need more help? Please contact Support.
0
rangeDom
rangeDom