Bantuan Formula dan Fungsi
- Selamat Datang
-
- ACCRINT
- ACCRINTM
- BONDDURATION
- BONDMDURATION
- COUPDAYBS
- COUPDAYS
- COUPDAYSNC
- COUPNUM
- CUMIPMT
- CUMPRINC
- CURRENCY
- CURRENCYCODE
- CURRENCYCONVERT
- CURRENCYH
- DB
- DDB
- DISC
- EFFECT
- FV
- INTRATE
- IPMT
- IRR
- ISPMT
- MIRR
- NOMINAL
- NPER
- NPV
- PMT
- PPMT
- PRICE
- PRICEDISC
- PRICEMAT
- PV
- RATE
- RECEIVED
- SLN
- STOCK
- STOCKH
- SYD
- VDB
- XIRR
- XNPV
- YIELD
- YIELDDISC
- YIELDMAT
-
- AVEDEV
- AVERAGE
- AVERAGEA
- AVERAGEIF
- AVERAGEIFS
- BETADIST
- BETAINV
- BINOMDIST
- CHIDIST
- CHIINV
- CHITEST
- CONFIDENCE
- CORREL
- COUNT
- COUNTA
- COUNTBLANK
- COUNTIF
- COUNTIFS
- COVAR
- CRITBINOM
- DEVSQ
- EXPONDIST
- FDIST
- FINV
- FORECAST
- FREQUENCY
- GAMMADIST
- GAMMAINV
- GAMMALN
- GEOMEAN
- HARMEAN
- INTERCEPT
- LARGE
- LINEST
- LOGINV
- LOGNORMDIST
- MAX
- MAXA
- MAXIFS
- MEDIAN
- MIN
- MINA
- MINIFS
- MODE
- NEGBINOMDIST
- NORMDIST
- NORMINV
- NORMSDIST
- NORMSINV
- PERCENTILE
- PERCENTRANK
- PERMUT
- POISSON
- PROB
- QUARTILE
- RANK
- SLOPE
- SMALL
- STANDARDIZE
- STDEV
- STDEVA
- STDEVP
- STDEVPA
- TDIST
- TINV
- TTEST
- VAR
- VARA
- VARP
- VARPA
- WEIBULL
- ZTEST
- Hak Cipta
TEXTBEFORE
Fungsi TEXTBEFORE menghasilkan nilai string yang berisi semua karakter yang muncul sebelum substring yang ditentukan di nilai string asli.
TEXTBEFORE(source-string, search-string, occurrence)
source-string: Nilai mana pun.
search-string: Nilai string untuk dicari.
occurrence: Nilai opsional yang menandakan kejadian mana dari search-string dalam source-string untuk dicocokkan (1 untuk kecocokan pertama, 2 untuk kecocokan kedua, …, -1 untuk kecocokan terakhir, -2 untuk kecocokan kedua dari terakhir, …). Jika dihilangkan, atur ke 1.
Catatan
Secara default, jika terdapat beberapa kejadian search-string di source-string, TEXTBEFORE menghasilkan teks hingga (dan mengecualikan) kejadian pertama.
Jika search-string tidak ditemukan dalam source-string, atau jika kejadian yang ditentukan tidak dapat ditemukan, kesalahan dihasilkan.
REGEX diizinkan di search-string untuk pencarian yang lebih kompleks.
Secara default, pencarian tidak sensitif huruf besar. Untuk mempertimbangkan kapital di pencarian Anda, gunakan fungsi REGEX untuk search-string.
Contoh |
---|
=TEXTBEFORE("Marina Cavanna"; " ") menghasilkan "Marina". =TEXTBEFORE("If you want to return the text before the second to, in case there are multiple to occurrences."; "to"; 2) menghasilkan "If you want to return the text before the second". =TEXTBEFORE("All the text before the very last occurrence of the word the"; "the"; -1) menghasilkan "All the text before the very last occurrence of the word". =TEXTBEFORE("Get all the text before an email like marina@example.com"; REGEX("([A-Z0-9a-z._%+-]+)@([A-Za-z0-9.-]+\.[A-Za-z]{2,4})")) menghasilkan "Get all the text before an email like ". =TEXTBEFORE("All the text before the table of contents";" ";3) menghasilkan “All the text”. |