Enum BooleanCriteria
Koleksiyonlar ile düzeninizi koruyun
İçeriği tercihlerinize göre kaydedin ve kategorilere ayırın.
BooleÖlçütleri
Koşullu biçimlendirmede veya filtrede kullanılabilen boole ölçütlerini temsil eden bir liste.
Bir enum'u çağırmak için üst sınıfını, adını ve özelliğini çağırırsınız. Örneğin,
SpreadsheetApp.BooleanCriteria.CELL_EMPTY
.
Özellikler
Mülk | Tür | Açıklama |
CELL_EMPTY | Enum | Hücre boş olduğunda ölçüt karşılanır. |
CELL_NOT_EMPTY | Enum | Hücre boş olmadığında ölçüt karşılanır. |
DATE_AFTER | Enum | Bir tarih, belirtilen değerden sonra olduğunda ölçüt karşılanır. |
DATE_BEFORE | Enum | Bir tarih, belirtilen değerden önce olduğunda ölçüt karşılanır. |
DATE_EQUAL_TO | Enum | Bir tarih, belirtilen değere eşit olduğunda ölçüt karşılanır. |
DATE_NOT_EQUAL_TO | Enum | Bir tarih, belirtilen değere eşit olmadığında ölçüt karşılanır. |
DATE_AFTER_RELATIVE | Enum | Bir tarih, göreli tarih değerinden sonra olduğunda ölçüt karşılanır. |
DATE_BEFORE_RELATIVE | Enum | Bir tarih, göreli tarih değerinden önce olduğunda ölçüt karşılanır. |
DATE_EQUAL_TO_RELATIVE | Enum | Bir tarih, göreli tarih değerine eşit olduğunda ölçüt karşılanır. |
NUMBER_BETWEEN | Enum | Ölçüt, verilen değerler arasında bir sayı olduğunda karşılanır. |
NUMBER_EQUAL_TO | Enum | Ölçüt, belirtilen değere eşit bir sayı olduğunda karşılanır. |
NUMBER_GREATER_THAN | Enum | Ölçüt, verilen değerden büyük bir sayı olduğunda karşılanır. |
NUMBER_GREATER_THAN_OR_EQUAL_TO | Enum | Belirtilen değerden büyük veya ona eşit bir sayı olduğunda ölçüt karşılanır. |
NUMBER_LESS_THAN | Enum | Ölçüt, verilen değerden düşük bir sayı olduğunda karşılanır. |
NUMBER_LESS_THAN_OR_EQUAL_TO | Enum | Ölçüt, verilen değerden küçük veya eşit bir sayı olduğunda karşılanır. |
NUMBER_NOT_BETWEEN | Enum | Belirtilen değerler arasında olmayan bir sayı olduğunda ölçüt karşılanır. |
NUMBER_NOT_EQUAL_TO | Enum | Ölçüt, belirtilen değere eşit olmayan bir sayı olduğunda karşılanır. |
TEXT_CONTAINS | Enum | Giriş verilen değeri içerdiğinde ölçüt karşılanır. |
TEXT_DOES_NOT_CONTAIN | Enum | Giriş, belirtilen değeri içermediğinde ölçüt karşılanır. |
TEXT_EQUAL_TO | Enum | Giriş verilen değere eşit olduğunda ölçüt karşılanır. |
TEXT_NOT_EQUAL_TO | Enum | Giriş verilen değere eşit olmadığında ölçüt karşılanır. |
TEXT_STARTS_WITH | Enum | Giriş, belirtilen değerle başladığında ölçüt karşılanır. |
TEXT_ENDS_WITH | Enum | Giriş verilen değerle bittiğinde ölçüt karşılanır. |
CUSTOM_FORMULA | Enum | Giriş, verilen formülün true olarak değerlendirilmesini sağladığında ölçüt karşılanır. |
Aksi belirtilmediği sürece bu sayfanın içeriği Creative Commons Atıf 4.0 Lisansı altında ve kod örnekleri Apache 2.0 Lisansı altında lisanslanmıştır. Ayrıntılı bilgi için Google Developers Site Politikaları'na göz atın. Java, Oracle ve/veya satış ortaklarının tescilli ticari markasıdır.
Son güncelleme tarihi: 2025-07-26 UTC.
[null,null,["Son güncelleme tarihi: 2025-07-26 UTC."],[[["\u003cp\u003e\u003ccode\u003eBooleanCriteria\u003c/code\u003e is an enumeration used to define criteria for conditional formatting or filtering in Google Sheets.\u003c/p\u003e\n"],["\u003cp\u003eIt provides a variety of properties representing different criteria types like \u003ccode\u003eCELL_EMPTY\u003c/code\u003e, \u003ccode\u003eDATE_EQUAL_TO\u003c/code\u003e, \u003ccode\u003eNUMBER_GREATER_THAN\u003c/code\u003e, \u003ccode\u003eTEXT_CONTAINS\u003c/code\u003e, and more.\u003c/p\u003e\n"],["\u003cp\u003eTo use a specific criteria, you call it using the syntax \u003ccode\u003eSpreadsheetApp.BooleanCriteria.<property>\u003c/code\u003e, for example, \u003ccode\u003eSpreadsheetApp.BooleanCriteria.CELL_EMPTY\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eEach property represents a specific condition, such as whether a cell is empty, a date is within a certain range, or text contains a specific string.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eBooleanCriteria\u003c/code\u003e helps automate tasks and enhance data analysis by enabling you to dynamically format or filter spreadsheet data based on specified conditions.\u003c/p\u003e\n"]]],[],null,["# Enum BooleanCriteria\n\nBooleanCriteria\n\nAn enumeration representing the boolean criteria that can be used in conditional format or\nfilter.\n\nTo call an enum, you call its parent class, name, and property. For example, `\nSpreadsheetApp.BooleanCriteria.CELL_EMPTY`. \n\n### Properties\n\n| Property | Type | Description |\n|-----------------------------------|--------|-------------------------------------------------------------------------------------|\n| `CELL_EMPTY` | `Enum` | The criteria is met when a cell is empty. |\n| `CELL_NOT_EMPTY` | `Enum` | The criteria is met when a cell is not empty. |\n| `DATE_AFTER` | `Enum` | The criteria is met when a date is after the given value. |\n| `DATE_BEFORE` | `Enum` | The criteria is met when a date is before the given value. |\n| `DATE_EQUAL_TO` | `Enum` | The criteria is met when a date is equal to the given value. |\n| `DATE_NOT_EQUAL_TO` | `Enum` | The criteria is met when a date is not equal to the given value. |\n| `DATE_AFTER_RELATIVE` | `Enum` | The criteria is met when a date is after the relative date value. |\n| `DATE_BEFORE_RELATIVE` | `Enum` | The criteria is met when a date is before the relative date value. |\n| `DATE_EQUAL_TO_RELATIVE` | `Enum` | The criteria is met when a date is equal to the relative date value. |\n| `NUMBER_BETWEEN` | `Enum` | The criteria is met when a number that is between the given values. |\n| `NUMBER_EQUAL_TO` | `Enum` | The criteria is met when a number that is equal to the given value. |\n| `NUMBER_GREATER_THAN` | `Enum` | The criteria is met when a number that is greater than the given value. |\n| `NUMBER_GREATER_THAN_OR_EQUAL_TO` | `Enum` | The criteria is met when a number that is greater than or equal to the given value. |\n| `NUMBER_LESS_THAN` | `Enum` | The criteria is met when a number that is less than the given value. |\n| `NUMBER_LESS_THAN_OR_EQUAL_TO` | `Enum` | The criteria is met when a number that is less than or equal to the given value. |\n| `NUMBER_NOT_BETWEEN` | `Enum` | The criteria is met when a number that is not between the given values. |\n| `NUMBER_NOT_EQUAL_TO` | `Enum` | The criteria is met when a number that is not equal to the given value. |\n| `TEXT_CONTAINS` | `Enum` | The criteria is met when the input contains the given value. |\n| `TEXT_DOES_NOT_CONTAIN` | `Enum` | The criteria is met when the input does not contain the given value. |\n| `TEXT_EQUAL_TO` | `Enum` | The criteria is met when the input is equal to the given value. |\n| `TEXT_NOT_EQUAL_TO` | `Enum` | The criteria is met when the input is not equal to the given value. |\n| `TEXT_STARTS_WITH` | `Enum` | The criteria is met when the input begins with the given value. |\n| `TEXT_ENDS_WITH` | `Enum` | The criteria is met when the input ends with the given value. |\n| `CUSTOM_FORMULA` | `Enum` | The criteria is met when the input makes the given formula evaluate to `true`. |"]]