Comparing values in two columns in Google Sheets is a crucial task for data analysis, reconciliation, and identifying discrepancies. compare.edu.vn offers in-depth guidance on employing various techniques, including formulas and conditional formatting, to effectively compare data sets. By mastering these methods, you can streamline your data processing, ensure accuracy, and make informed decisions. Discover efficient data comparison solutions today, along with practical examples, and unlock the potential of your spreadsheets.
1. Why Compare Values in Two Columns in Google Sheets?
Comparing values in two columns in Google Sheets can provide numerous benefits:
- Data Validation: Ensure data accuracy by identifying inconsistencies or discrepancies between two data sets.
- Error Detection: Pinpoint errors in data entry or processing by comparing values in different columns.
- Reconciliation: Match records between two data sources, such as bank statements and accounting records.
- Duplicate Identification: Find duplicate entries in a data set by comparing values in the same column.
- Data Analysis: Identify trends, patterns, and relationships between two sets of data.
- Decision Making: Support informed decision-making by comparing key metrics or indicators in different scenarios.
2. What are the different methods for comparing values in Google Sheets?
There are several methods available for comparing values in two columns in Google Sheets, each with its own strengths and weaknesses:
- Using the IF Function: Compares corresponding values in two columns and returns a specified value if they match or another value if they don’t.
- Using the MATCH Function: Searches for a value in one column and returns the relative position of that value in another column.
- Using the VLOOKUP Function: Searches for a value in the first column of a range and returns the value in a specified column of the same row.
- Using Conditional Formatting: Highlights cells that meet specific criteria, such as matching or non-matching values in two columns.
- Using the COUNTIF Function: Counts the number of times a value appears in a range, which can be used to identify duplicate entries or missing values.
- Using the ARRAYFORMULA Function: Applies a formula to an entire range of cells, allowing you to compare values in two columns without dragging the formula down.
3. How to compare values in two columns using the IF function?
The IF function is a versatile tool for comparing values in Google Sheets. Its basic syntax is:
=IF(logical_expression, value_if_true, value_if_false)
To compare values in two columns, you can use the following formula:
=IF(A1=B1, "Match", "No Match")
This formula compares the value in cell A1 with the value in cell B1. If the values are equal, the formula returns “Match”. Otherwise, it returns “No Match”.
You can drag this formula down to compare all the rows in the two columns.
4. How to compare values in two columns using the MATCH function?
The MATCH function searches for a specified value in a range and returns the relative position of that value in that range. Its syntax is:
=MATCH(search_key, range, [search_type])
To compare values in two columns using the MATCH function, you can use the following formula:
=IF(ISNUMBER(MATCH(A1, B:B, 0)), "Match", "No Match")
This formula searches for the value in cell A1 in column B. If a match is found, the MATCH function returns the relative position of the match. The ISNUMBER function checks if the result of the MATCH function is a number. If it is, the formula returns “Match”. Otherwise, it returns “No Match”.
5. How to compare values in two columns using the VLOOKUP function?
The VLOOKUP function searches for a value in the first column of a range and returns the value in a specified column of the same row. Its syntax is:
=VLOOKUP(search_key, range, index, [is_sorted])
To compare values in two columns using the VLOOKUP function, you can use the following formula:
=IF(ISNA(VLOOKUP(A1, B:B, 1, FALSE)), "No Match", "Match")
This formula searches for the value in cell A1 in column B. If a match is found, the VLOOKUP function returns the value in the first column of the same row (which is the matching value itself). The ISNA function checks if the result of the VLOOKUP function is an error (NA). If it is, it means that no match was found, and the formula returns “No Match”. Otherwise, it returns “Match”.
6. How to highlight matching and non-matching values using conditional formatting?
Conditional formatting is a powerful tool for visually highlighting cells that meet specific criteria. To highlight matching and non-matching values in two columns:
- Select the range of cells you want to format.
- Go to Format > Conditional formatting.
- In the “Apply to range” field, make sure the correct range is selected.
- Under “Format rules”, select “Custom formula is” from the “Format cells if” dropdown.
- To highlight matching values, enter the following formula:
=A1=B1
- Choose a formatting style (e.g., green fill) to indicate matching values.
- Click “Add another rule” to add a rule for non-matching values.
- Select “Custom formula is” from the “Format cells if” dropdown.
- To highlight non-matching values, enter the following formula:
=A1<>B1
- Choose a different formatting style (e.g., red fill) to indicate non-matching values.
- Click “Done”.
Now, matching values will be highlighted in green, and non-matching values will be highlighted in red.
7. How to compare values in two columns using the COUNTIF function?
The COUNTIF function counts the number of cells within a range that meet a given criteria. Its syntax is:
=COUNTIF(range, criterion)
To compare values in two columns using the COUNTIF function, you can use the following formula:
=IF(COUNTIF(B:B, A1)>0, "Match", "No Match")
This formula counts the number of times the value in cell A1 appears in column B. If the count is greater than 0, it means that the value exists in column B, and the formula returns “Match”. Otherwise, it returns “No Match”.
8. How to compare values in two columns using the ARRAYFORMULA function?
The ARRAYFORMULA function enables you to apply a formula to an entire range of cells without dragging the formula down. To compare values in two columns using the ARRAYFORMULA function, you can use the following formula:
=ARRAYFORMULA(IF(A1:A10=B1:B10, "Match", "No Match"))
This formula compares the values in the range A1:A10 with the values in the range B1:B10. It returns an array of “Match” and “No Match” values, indicating whether the corresponding values in each row match or not.
9. How to find differences between two columns of data in Google Sheets?
To find the differences between two columns of data in Google Sheets, you can use a combination of formulas and conditional formatting. Here’s a step-by-step approach:
- Identify Unique Values: Use the
UNIQUE
function to extract unique values from each column. For example, if your data is in columns A and B, use the following formulas:
=UNIQUE(A:A)
in column C
=UNIQUE(B:B)
in column D
- Compare Unique Values: Use the
COUNTIF
function to check if each unique value from column C exists in column D and vice versa.
=IF(COUNTIF(D:D, C1)>0, "", C1)
in column E (finds values in column C that are not in column D)
=IF(COUNTIF(C:C, D1)>0, "", D1)
in column F (finds values in column D that are not in column C)
- Combine Differences: Combine the results from columns E and F to get a complete list of differences. You can copy the values from both columns into a new column or use a formula to combine them.
- Conditional Formatting (Optional): Apply conditional formatting to highlight the differences in your original data. Select your data range (A:B), go to “Format” > “Conditional formatting,” and use a custom formula like
=COUNTIF(E:F, A1)>0
to highlight values that appear in the list of differences.
This method helps you identify and highlight the values that are present in one column but not in the other, effectively showing the differences between the two columns.
10. How to compare two columns for matches and extract the matching rows?
To compare two columns for matches and extract the matching rows in Google Sheets, you can use a combination of the FILTER
and MATCH
functions. Here’s how:
- Identify Matching Rows: Use the
MATCH
function to find the rows where the values in one column match the values in another column. TheMATCH
function returns the position of a value in a range. If the value is not found, it returns an error.
=ISNUMBER(MATCH(A1,B:B,0))
- Filter Matching Rows: Use the
FILTER
function to extract the rows where theMATCH
function returns a number (meaning there is a match). TheFILTER
function takes a range and a condition, and returns the rows that meet the condition.
=FILTER(A:C,ISNUMBER(MATCH(A:A,B:B,0)))
This formula extracts all columns where column A values have a match in column B.
11. How can I compare two columns with different data types in Google Sheets?
Comparing two columns with different data types in Google Sheets requires careful handling to ensure accurate results. Here’s a step-by-step approach:
-
Understand the Data Types: Identify the data types in each column. Common types include text, numbers, dates, and Booleans.
-
Convert Data Types (If Necessary): If possible, convert one column’s data type to match the other using functions like
TEXT
,VALUE
, orDATEVALUE
.- Text to Number: Use
VALUE(A1)
to convert text in cell A1 to a number. - Number to Text: Use
TEXT(A1, "0")
to convert a number in cell A1 to text. Adjust the format “0” as needed. - Date to Number: Use
VALUE(A1)
to convert a date to its serial number representation. - Number to Date: Use
DATE(year, month, day)
orDATEVALUE("yyyy-mm-dd")
to convert a number to a date.
- Text to Number: Use
-
Compare Values: After converting data types (if needed), use comparison functions like
IF
,MATCH
, or conditional formatting.- IF Function:
=IF(VALUE(A1)=B1, "Match", "No Match")
- Conditional Formatting: Use a custom formula like
=VALUE(A1)=B1
to highlight matching cells.
- IF Function:
-
Handle Errors: Use functions like
ISERROR
orIFERROR
to handle potential errors during data type conversion.=IFERROR(VALUE(A1), A1)
12. How to compare values in two columns and return a third column with the differences?
To compare values in two columns and return a third column with the differences in Google Sheets, you can use a formula that checks for equality and returns different values based on the result. Here’s how:
- Set Up Your Data: Assume your data is in columns A and B, starting from row 1. You want to output the differences in column C.
- Enter the Formula: In cell C1, enter the following formula:
=IF(A1=B1, "", A1&" ≠ "&B1)
- Drag the Formula Down: Click and drag the bottom-right corner of cell C1 down to apply the formula to the rest of the rows in columns A and B.
Explanation:
IF(A1=B1, "", A1&" ≠ "&B1)
: This is the main formula.A1=B1
: This checks if the value in cell A1 is equal to the value in cell B1.""
: If the values are equal, the formula returns an empty string, making the cell in column C appear blank.A1&" ≠ "&B1
: If the values are not equal, the formula concatenates the value from cell A1, a “≠” symbol (which means “not equal to”), and the value from cell B1.
Example:
Column A | Column B | Column C |
---|---|---|
10 | 10 | |
20 | 25 | 20 ≠ 25 |
30 | 30 | |
40 | 45 | 40 ≠ 45 |
50 | 50 |
In this example, column C will be blank for rows where the values in columns A and B are the same, and it will display the differing values with the “≠” symbol for rows where the values are different.
13. How can I ignore case sensitivity when comparing two columns in Google Sheets?
To ignore case sensitivity when comparing two columns in Google Sheets, you can use the UPPER
or LOWER
functions to convert the text in both columns to the same case before comparing them. Here’s how:
-
Using the
UPPER
Function:- The
UPPER
function converts all text in a cell to uppercase. Use this function to convert both columns to uppercase before comparing them. - Formula:
=IF(UPPER(A1)=UPPER(B1), "Match", "No Match")
- In this formula,
UPPER(A1)
converts the text in cellA1
to uppercase, andUPPER(B1)
does the same for cellB1
. TheIF
function then compares the uppercase versions of the text.
- The
-
Using the
LOWER
Function:- The
LOWER
function converts all text in a cell to lowercase. Use this function to convert both columns to lowercase before comparing them. - Formula:
=IF(LOWER(A1)=LOWER(B1), "Match", "No Match")
- In this formula,
LOWER(A1)
converts the text in cellA1
to lowercase, andLOWER(B1)
does the same for cellB1
. TheIF
function then compares the lowercase versions of the text.
- The
Example:
Assume you have the following data in columns A and B:
Column A | Column B |
---|---|
Apple | apple |
Banana | BANANA |
Orange | Orange |
grape | GRAPE |
Using the UPPER
function:
=IF(UPPER(A1)=UPPER(B1), "Match", "No Match")
Results:
Column A | Column B | Result |
---|---|---|
Apple | apple | Match |
Banana | BANANA | Match |
Orange | Orange | Match |
grape | GRAPE | Match |
Using the LOWER
function:
=IF(LOWER(A1)=LOWER(B1), "Match", "No Match")
Results:
Column A | Column B | Result |
---|---|---|
Apple | apple | Match |
Banana | BANANA | Match |
Orange | Orange | Match |
grape | GRAPE | Match |
In both cases, the comparison ignores the case of the text, and the formula returns “Match” if the text is the same regardless of case.
14. How can I compare two columns of dates in Google Sheets?
Comparing two columns of dates in Google Sheets can be done directly if the dates are formatted correctly. Here’s how:
-
Ensure Dates Are in Date Format:
- Verify that both columns are formatted as dates. Select the columns, go to Format > Number, and choose a date format.
-
Using the IF Function:
- Use the
IF
function to compare the dates directly. - Formula:
=IF(A1=B1, "Match", "No Match")
- This formula checks if the date in cell
A1
is equal to the date in cellB1
.
- Use the
-
Comparing Dates with Specific Conditions:
- You can also compare dates with conditions like “before” or “after” using the
<
,>
,<=
, and>=
operators. - Formula:
=IF(A1<B1, "A is earlier", IF(A1>B1, "A is later", "Same Date"))
- This formula checks if the date in cell
A1
is earlier or later than the date in cellB1
.
- You can also compare dates with conditions like “before” or “after” using the
Example:
Assume you have the following dates in columns A and B:
Column A | Column B |
---|---|
2024-01-01 | 2024-01-01 |
2024-01-05 | 2024-01-10 |
2024-01-15 | 2024-01-15 |
2024-01-20 | 2024-01-18 |
Using the formula =IF(A1=B1, "Match", "No Match")
:
Column A | Column B | Result |
---|---|---|
2024-01-01 | 2024-01-01 | Match |
2024-01-05 | 2024-01-10 | No Match |
2024-01-15 | 2024-01-15 | Match |
2024-01-20 | 2024-01-18 | No Match |
Using the formula =IF(A1<B1, "A is earlier", IF(A1>B1, "A is later", "Same Date"))
:
Column A | Column B | Result |
---|---|---|
2024-01-01 | 2024-01-01 | Same Date |
2024-01-05 | 2024-01-10 | A is earlier |
2024-01-15 | 2024-01-15 | Same Date |
2024-01-20 | 2024-01-18 | A is later |
These formulas allow you to directly compare dates and determine if they match, or if one date is earlier or later than the other.
15. How to compare two columns and find the values that exist in one column but not in the other?
To compare two columns and find the values that exist in one column but not in the other, you can use a combination of the COUNTIF
and FILTER
functions. Here’s how to do it:
-
Set Up Your Data: Assume your data is in columns A and B, starting from row 1.
-
Find Values in Column A that are not in Column B:
- Use the
COUNTIF
function to check if each value in column A exists in column B. - Use the
FILTER
function to return the values from column A that do not exist in column B. - Formula:
=FILTER(A:A, ISBLANK(MATCH(A:A, B:B, 0)))
- Explanation:
MATCH(A:A, B:B, 0)
: This part tries to find each value from column A in column B. If a value is found,MATCH
returns its position in column B; otherwise, it returns an error.ISBLANK(MATCH(A:A, B:B, 0))
: It checks if the Match is found or not. It givesTRUE
for No Match andFALSE
for Match found.FILTER(A:A, ISBLANK(MATCH(A:A, B:B, 0)))
: This part filters column A based on the TRUE values. So the output will be the values that are in A but not in B.
- Use the
-
Find Values in Column B that are not in Column A:
- Use the
COUNTIF
function to check if each value in column B exists in column A. - Use the
FILTER
function to return the values from column B that do not exist in column A. - Formula:
=FILTER(B:B, ISBLANK(MATCH(B:B, A:A, 0)))
- Explanation:
MATCH(B:B, A:A, 0)
: This part tries to find each value from column B in column A. If a value is found,MATCH
returns its position in column A; otherwise, it returns an error.ISBLANK(MATCH(B:B, A:A, 0))
: It checks if the Match is found or not. It givesTRUE
for No Match andFALSE
for Match found.FILTER(B:B, ISBLANK(MATCH(B:B, A:A, 0)))
: This part filters column B based on the TRUE values. So the output will be the values that are in B but not in A.
- Use the
Example:
Assume you have the following data in columns A and B:
Column A | Column B |
---|---|
Apple | Apple |
Banana | Orange |
Cherry | Grape |
Date | Kiwi |
Elder |
Using the formula =FILTER(A:A, ISBLANK(MATCH(A:A, B:B, 0)))
to find values in A that are not in B:
Result:
Values in A but not in B |
---|
Banana |
Cherry |
Date |
Elder |
Using the formula =FILTER(B:B, ISBLANK(MATCH(B:B, A:A, 0)))
to find values in B that are not in A:
Result:
Values in B but not in A |
---|
Orange |
Grape |
Kiwi |
This method allows you to quickly identify the unique values in each column that do not appear in the other column.
16. How can I compare two columns and count the number of matches in Google Sheets?
To compare two columns and count the number of matches in Google Sheets, you can use the SUMPRODUCT
and COUNTIF
functions together. Here’s how:
- Set Up Your Data:
- Assume your data is in columns A and B, starting from row 1.
- Enter the Formula:
- In a cell where you want to display the count of matches, enter the following formula:
=SUMPRODUCT(COUNTIF(A:A, B:B))
- In a cell where you want to display the count of matches, enter the following formula:
- Explanation:
COUNTIF(A:A, B:B)
: This part counts how many times each value in column B appears in column A. It returns an array of counts.SUMPRODUCT(COUNTIF(A:A, B:B))
: This function then sums up all the counts, giving you the total number of matches between the two columns.
Example:
Assume you have the following data in columns A and B:
Column A | Column B |
---|---|
Apple | Apple |
Banana | Orange |
Cherry | Apple |
Date | Banana |
Apple | Cherry |
Using the formula =SUMPRODUCT(COUNTIF(A:A, B:B))
:
Result: 4
Explanation:
Apple
from column B appears twice in column A.Orange
from column B appears zero times in column A.Banana
from column B appears once in column A.Cherry
from column B appears once in column A.
So, the total count of matches is 2 + 0 + 1 + 1 = 4.
This method efficiently counts the number of times any value from one column appears in the other column.
17. How to compare multiple columns against one column in Google Sheets?
To compare multiple columns against one column in Google Sheets, you can use a combination of functions like IF
, MATCH
, ISNUMBER
, and ARRAYFORMULA
. Here’s a comprehensive guide:
Scenario:
You have one main column (e.g., Column A) and you want to compare it against several other columns (e.g., Columns B, C, D) to see if there are any matches.
Method 1: Using IF
and MATCH
This method checks each row individually to see if the value in the main column (A) exists in any of the other columns (B, C, D).
- Formula:
=IF(OR(ISNUMBER(MATCH(A1, B:B, 0)), ISNUMBER(MATCH(A1, C:C, 0)), ISNUMBER(MATCH(A1, D:D, 0))), "Match", "No Match")
MATCH(A1, B:B, 0)
: Tries to find the value from cell A1 in column B. If found, it returns the row number; otherwise, it returns an error.ISNUMBER(MATCH(A1, B:B, 0))
: Checks if the result ofMATCH
is a number (i.e., a match was found).OR(ISNUMBER(MATCH(A1, B:B, 0)), ISNUMBER(MATCH(A1, C:C, 0)), ISNUMBER(MATCH(A1, D:D, 0)))
: Checks if the value in A1 is found in any of the columns B, C, or D.IF(..., "Match", "No Match")
: If the value is found in any of the columns, it returns “Match”; otherwise, it returns “No Match”.
- Apply the Formula:
- Enter this formula in the first row of a new column (e.g., E1).
- Drag the fill handle (the small square at the bottom-right of the cell) down to apply the formula to all rows.
Method 2: Using ARRAYFORMULA
This method provides a more efficient way to apply the same logic to an entire range of cells without needing to drag the formula down.
- Formula:
=ARRAYFORMULA(IF(A1:A="", "", IF(MMULT(IF(ISNUMBER(MATCH(A1:A, TRANSPOSE(B:D), 0)), 1, 0), SEQUENCE(COLUMNS(B:D), 1, 1, 0))>0, "Match", "No Match")))
TRANSPOSE(B:D)
: Transposes the columns B, C, and D into a single row for comparison.MATCH(A1:A, TRANSPOSE(B:D), 0)
: Tries to find each value from column A in the transposed range of columns B, C, and D.ISNUMBER(MATCH(A1:A, TRANSPOSE(B:D), 0))
: Checks if the result ofMATCH
is a number (i.e., a match was found).IF(ISNUMBER(...), 1, 0)
: Converts the boolean result ofISNUMBER
to 1 (if true) or 0 (if false).MMULT(IF(ISNUMBER(...), 1, 0), SEQUENCE(COLUMNS(B:D), 1, 1, 0))
: Uses matrix multiplication to check if there’s at least one match across the columns.IF(A1:A="", "", IF(..., "Match", "No Match"))
: If the value in column A is empty, it returns an empty string; otherwise, it returns “Match” or “No Match” based on the matrix multiplication result.
- Enter the Formula:
- Enter this formula in the first row of a new column (e.g., E1).
- The
ARRAYFORMULA
will automatically apply the formula to all rows in the specified range.
Example:
Assume you have the following data:
Column A | Column B | Column C | Column D |
---|---|---|---|
Apple | Banana | Apple | Grape |
Banana | Cherry | Date | Banana |
Cherry | Apple | Elder | Fig |
Date |
Using Method 1:
Column A | Column B | Column C | Column D | Result |
---|---|---|---|---|
Apple | Banana | Apple | Grape | Match |
Banana | Cherry | Date | Banana | Match |
Cherry | Apple | Elder | Fig | Match |
Date | No Match |
Using Method 2:
Column A | Column B | Column C | Column D | Result |
---|---|---|---|---|
Apple | Banana | Apple | Grape | Match |
Banana | Cherry | Date | Banana | Match |
Cherry | Apple | Elder | Fig | Match |
Date | No Match |
18. How do I compare two Google Sheets files and highlight differences?
Comparing two Google Sheets files and highlighting differences can be achieved through a combination of techniques involving importing data and using conditional formatting. Here’s a step-by-step guide:
Step 1: Import Data from the Second Sheet
First, you need to get the data from the second Google Sheet into your primary sheet. You can use the IMPORTRANGE
function for this.
- Open Your Primary Google Sheet:
- This is the sheet where you want to compare the data and highlight differences.
- Import Data Using
IMPORTRANGE
:- In a blank area of your primary sheet, use the
IMPORTRANGE
function to import data from the second sheet. - Syntax:
=IMPORTRANGE("spreadsheet_url", "range_string")
- Example:
=IMPORTRANGE("https://docs.google.com/spreadsheets/d/your_second_sheet_id", "Sheet1!A1:Z100")
Replace
"https://docs.google.com/spreadsheets/d/your_second_sheet_id"
with the actual URL of the second Google Sheet.
Replace"Sheet1!A1:Z100"
with the range you want to import. - Grant Access:
- When you first use
IMPORTRANGE
, Google Sheets will prompt you to grant access. Click “Allow access” to let the formula pull data from the second sheet.
- When you first use
- In a blank area of your primary sheet, use the
Step 2: Compare Data and Highlight Differences
Now that you have both datasets in one sheet, you can compare them and highlight the differences using conditional formatting.
- Select Your Data Range:
- Select the range of cells that contain the data from your primary sheet (e.g.,
A1:Z100
).
- Select the range of cells that contain the data from your primary sheet (e.g.,
- Open Conditional Formatting:
- Go to Format > Conditional formatting.
- Set Up Conditional Formatting Rule:
- In the “Conditional format rules” sidebar:
- Under “Apply to range”, ensure your data range is selected (e.g.,
A1:Z100
). - Under “Format rules”, choose “Custom formula is” from the “Format cells if” dropdown.
- Enter the following formula to highlight differences:
=A1<>IMPORTRANGE("https://docs.google.com/spreadsheets/d/your_second_sheet_id", "Sheet1!"&ADDRESS(ROW(),COLUMN()))
Replace
"https://docs.google.com/spreadsheets/d/your_second_sheet_id"
with the actual URL of the second Google Sheet. - Choose a formatting style (e.g., fill color, text color) to highlight the differences.
- Click Done.
- Under “Apply to range”, ensure your data range is selected (e.g.,
- In the “Conditional format rules” sidebar:
Explanation:
IMPORTRANGE("https://docs.google.com/spreadsheets/d/your_second_sheet_id", "Sheet1!"&ADDRESS(ROW(),COLUMN()))
:- This part dynamically creates the range string to match the current cell being evaluated.
ADDRESS(ROW(),COLUMN())
returns the address of the current cell (e.g.,"A1"
,"B2"
, etc.)."Sheet1!"&ADDRESS(ROW(),COLUMN())
constructs the full range string (e.g.,"Sheet1!A1"
,"Sheet1!B2"
, etc.).IMPORTRANGE
then fetches the value from the corresponding cell in the second sheet.
A1<>IMPORTRANGE(...)
:- This compares the value in the current cell of the primary sheet (
A1
) with the value fetched from the second sheet. - If they are different, the formula returns
TRUE
, and the conditional formatting is applied.
- This compares the value in the current cell of the primary sheet (
Example:
Sheet 1 (Primary):
A | B | |
---|---|---|
1 | Apple | 10 |
2 | Banana | 20 |
3 | Cherry | 30 |
Sheet 2 (Secondary):
A | B | |
---|---|---|
1 | Apple | 10 |
2 | Banana | 25 |
3 | Cherry | 3 |