Danh sách hàm hỗ trợ Google Data Studio thông dụng



Danh sách hàm hỗ trợ Google Data Studio thông dụng

Do admin Du Lịch Đâu hay làm các bảng số liệu Data Studio cho doanh nghiệp, đây là danh sách các hàm admin hay dùng nên thôi đăng lên đây, có gì bạn nào dùng thấy hữu ích thì cho admin 1 click quảng cáo nào đó nhé!
Looker Studio cung cấp một số hàm mạnh mẽ có thể được sử dụng bên trong các công thức trường tính toán.
Thông tin thêm về từng hàm, bao gồm cả các ví dụ, có sẵn trong trình sửa công thức. Trợ giúp này sẽ xuất hiện khi bạn bắt đầu nhập công thức của mình.

Danh sách 84 hàm và công thức Google Data Studio thông dụng

Type/Nhóm hàmName/TênDescription/Mô tảSyntax
AggregationAVGReturns the average of all values of X.AVG(X)
Trả về giá trị trung bình của tất cả các giá trị của X.
AggregationCOUNTReturns the number of values of X.COUNT(X)
Trả về số giá trị của X.
AggregationCOUNT_DISTINCTReturns the number of unique values of X.COUNT_DISTINCT(X)
Trả về số giá trị duy nhất của X.
AggregationMAXReturns the maximum value of X.MAX(X)
Trả về giá trị tối đa của X.
AggregationMEDIANReturns the median of all values of X.MEDIAN(X)
Trả về giá trị trung bình của tất cả các giá trị của X.
AggregationMINReturns the minimum value of X.MIN(X)
Trả về giá trị nhỏ nhất của X.
AggregationPERCENTILEReturns the percentile rank N of field X.PERCENTILE(X,N)
Trả về thứ hạng phần trăm N của trường X.
AggregationSTDDEVReturns the standard deviation of X.STDDEV(X)
Trả về độ lệch chuẩn của X.
AggregationSUMReturns the sum of all values of X.SUM(X)
Trả về tổng của tất cả các giá trị của X.
AggregationVARIANCEReturns the variance of X.VARIANCE(X)
Trả về phương sai của X.
ArithmeticABSReturns the absolute value of number.ABS(X)
Trả về giá trị tuyệt đối của số.
ArithmeticACOSReturns the inverse of the cosine of X.ACOS(X)
Trả về nghịch đảo của cosin của X.
ArithmeticASINReturns the inverse of the sine of X.ASIN(X)
Trả về nghịch đảo của sin của X.
ArithmeticATANReturns the inverse of the tangent of X.ATAN(X)
Trả về nghịch đảo của tiếp tuyến của X.
ArithmeticCEILReturns the nearest integer greater than X. For example, if the value of X is v, CEIL(X) is greater than or equal to v.CEIL(X)
Trả về số nguyên gần nhất lớn hơn X. Ví dụ: nếu giá trị của X là v, CEIL(X) lớn hơn hoặc bằng v.
ArithmeticCOSReturns the cosine of X.COS(X)
Trả về cosin của X.
ArithmeticFLOORReturns the nearest integer less than X. For example, if the value X is v, FLOOR(X) is equal to or less than v.FLOOR(X)
Trả về số nguyên gần nhất nhỏ hơn X. Ví dụ: nếu giá trị X là v, FLOOR(X) bằng hoặc nhỏ hơn v.
ArithmeticLOGReturns the logarithm to base 2 of X.LOG(X)
Trả về logarit cơ số 2 của X.
ArithmeticLOG10Returns the logarithm to base 10 of X.LOG10(X)
Trả về logarit cơ số 10 của X.
ArithmeticNARY_MAXReturns the maximum value of X, Y, [,Z]*. All input arguments must be of the same type: all numbers. At least one input argument must be a field or an expression containing a field.NARY_MAX(X, Y [,Z]*)
Trả về giá trị tối đa của X, Y, [,Z]*. Tất cả các đối số đầu vào phải cùng loại: tất cả các số. Ít nhất một đối số đầu vào phải là một trường hoặc một biểu thức có chứa một trường.
ArithmeticNARY_MINReturns the minimum value of X, Y, [,Z]*. All input arguments must be of the same type, all numbers. At least one input argument must be a field or an expression containing a field.NARY_MIN(X, Y [,Z]*)
Trả về giá trị tối thiểu của X, Y, [,Z]*. Tất cả các đối số đầu vào phải cùng loại, tất cả đều là số. Ít nhất một đối số đầu vào phải là một trường hoặc một biểu thức có chứa một trường.
ArithmeticPOWERReturns result of raising X to the power Y.POWER(X, Y)
Trả về kết quả của việc nâng X lên lũy thừa Y.
ArithmeticROUNDReturns X rounded to Y precision digits.ROUND(X, Y)
Trả về chữ số chính xác X được làm tròn đến Y.
ArithmeticSINReturns the sine of X.SIN(X)
Trả về sin của X.
ArithmeticSQRTReturns the square root of X. Note that X must be non-negative.SQRT(X)
Trả về căn bậc hai của X. Lưu ý rằng X phải không âm.
ArithmeticTANReturns the tangent of X.TAN(X)
Trả về tang của X.
ConditionalCASEEvaluates the condition of each successive WHEN clause and returns the first result where the condition is true; any remaining WHEN and ELSE clauses are not evaluated. If all conditions are false or NULL, returns else_result if present; if not present, returns NULLCASE
Đánh giá điều kiện của mỗi mệnh đề WHEN kế tiếp và trả về kết quả đầu tiên trong đó điều kiện là đúng; mọi mệnh đề WHEN và ELSE còn lại đều không được đánh giá. Nếu tất cả các điều kiện đều sai hoặc NULL, trả về else_result nếu có; nếu không có, trả về NULLWHEN condition THEN result
[WHEN condition THEN result]
[...]
[ELSE else_result]
END
ConditionalCASE (Simple)Compares input_expression to expression_to_match of each successive WHEN clause and returns the first result where this comparison returns trueCASE input_expression
So sánh biểu thức input_to_match với biểu thức_to_match của mỗi mệnh đề WHEN kế tiếp và trả về kết quả đầu tiên trong đó phép so sánh này trả về trueWHEN expression_to_match THEN result
[WHEN expression_to_match THEN result]
[...]
[ELSE result]
END
ConditionalIFNULLReturns a result if the input is null, otherwise, returns the input.IFNULL(input_expression, null_result)
Trả về kết quả nếu đầu vào là null, nếu không thì trả về đầu vào.
ConditionalCOALESCEReturns the first non-missing value found in a list of fields.COALESCE(field_expression[,field_expression, ...])
Trả về giá trị không thiếu đầu tiên được tìm thấy trong danh sách các trường.
ConditionalIFIf condition is true, returns true_result, else returns false_result. false_result is not evaluated if condition is true. true_result is not evaluated if condition is false or NULLIF(condition, true_result, false_result)
ConditionalNULLIFReturns null if the input matches an expression, otherwise returns the input.NULLIF(input_expression, expression_to_match)
Trả về null nếu dữ liệu đầu vào khớp với một biểu thức, nếu không thì trả về dữ liệu đầu vào.
DateCURRENT_DATEReturns the current date as of the specified or default timezone.CURRENT_DATE([time_zone])
Trả về ngày hiện tại theo múi giờ được chỉ định hoặc mặc định.
DateCURRENT_DATETIMEReturns the current date and time as of the specified or default timezone.CURRENT_DATETIME([time_zone])
Trả về ngày và giờ hiện tại theo múi giờ được chỉ định hoặc mặc định.
DateDATEConstructs a Date field or value from numbers or from a Date & Time field or expression.DATE(year, month, day)
Tạo trường Ngày hoặc giá trị từ các số hoặc từ trường hoặc biểu thức Ngày & Giờ.
DateDATE_DIFFReturns the difference in days between X and Y (X - Y).DATE_DIFF(X, Y)
Trả về chênh lệch số ngày giữa X và Y (X - Y).
DateDATE_FROM_UNIX_DATEInterprets an integer as the number of days since 1970-01-01.DATE_FROM_UNIX_DATE(integer)
Diễn giải một số nguyên là số ngày kể từ ngày 01-01-1970.
DateDATETIMEConstructs a Date & Time field or value from numbers.DATETIME(year, month, day, hour, minute, second)
Tạo trường Ngày & Giờ hoặc giá trị từ các số.
DateDATETIME_ADDAdds a specified time interval to a date.DATETIME_ADD(datetime_expression, INTERVAL integer part)
Thêm một khoảng thời gian được chỉ định vào một ngày.
DateDATETIME_DIFFReturns the number of part boundaries between two dates.DATETIME_DIFF(date_expression, date_expression, part)
Trả về số ranh giới phần giữa hai ngày.
DateDATETIME_SUBSubtracts a specified time interval from a date.DATETIME_SUB(datetime_expression, INTERVAL integer part)
Trừ một khoảng thời gian xác định từ một ngày.
DateDATETIME_TRUNCTruncates a date to the specified granularity.DATETIME_TRUNC(date_expression, part)
Cắt bớt một ngày theo mức độ chi tiết được chỉ định.
DateDAYReturns the day of a Date or Date & Time.Day(date_expression)
Trả về ngày của Ngày hoặc Ngày & Giờ.
DateEXTRACTReturns part of a Date or Date & Time.EXTRACT(part FROM date_expression)
Trả về một phần của Ngày hoặc Ngày & Giờ.
DateFORMAT_DATETIMEReturns a formatted date string.FORMAT_DATETIME(format_string, datetime_expression)
Trả về một chuỗi ngày được định dạng.
DateHOURReturns the hour of a date and time.HOUR(datetime_expression)
Trả về giờ của ngày và giờ.
DateMINUTEReturns the minutes component of a given date and time.MINUTE(datetime_expression)
Trả về thành phần phút của một ngày và giờ nhất định.
DateMONTHReturns the month from a Date & Time value.MONTH(date_expression)
Trả về tháng từ giá trị Ngày & Giờ.
DatePARSE_DATEConverts text to a date.PARSE_DATE(format_string, text)
Chuyển đổi văn bản thành một ngày.
DatePARSE_DATETIMEConverts text to a date with time.PARSE_DATETIME(format_string, text)
Chuyển đổi văn bản thành một ngày theo thời gian.
DateQUARTERReturns the quarter of the year for a given date.QUARTER(date_expression)
Trả về quý trong năm của một ngày nhất định.
DateSECONDReturns the seconds component of a given date and time.SECOND(datetime_expression)
Trả về thành phần giây của một ngày và giờ nhất định.
DateTODATEReturns a formatted compatibility mode Date.TODATE(X, Input Format, Output Format)
DateTODAYReturns the current date as of the specified or default timezone.TODAY([time_zone])
Trả về ngày hiện tại theo múi giờ được chỉ định hoặc mặc định.
DateUNIX_DATEReturns the number of days since 1970-01-01.UNIX_DATE(date_expression)
Trả về số ngày kể từ ngày 01-01-1970.
DateWEEKReturns the week number for a given date.WEEK(Date)
Trả về số tuần của một ngày nhất định.
DateWEEKDAYReturns a number representing the day of the week for a given date.WEEKDAY(Date)
Trả về một số đại diện cho ngày trong tuần của một ngày nhất định.
DateYEARReturns the year of a given date.YEAR(Date)
Trả về năm của một ngày nhất định.
DateYEARWEEKReturns the year and week number of a given date.YEARWEEK(Date)
Trả về số năm và tuần của một ngày nhất định.
GeoTOCITYReturns the city name for X.TOCITY(X [,Input Format])
GeoTOCONTINENTReturns the continent name for X.TOCONTINENT(X [,Input Format])
Trả về tên lục địa cho X.
GeoTOCOUNTRYReturns the country name for X.TOCOUNTRY(X [,Input Format])
Trả về tên quốc gia cho X.
GeoTOREGIONReturns the region name for X.TOREGION(X [,Input Format])
Trả về tên vùng cho X.
GeoTOSUBCONTINENTReturns the sub-continent name for X.TOSUBCONTINENT(X [,Input Format])
Trả về tên tiểu lục địa cho X.
MiscellaneousCASTCast field or expression into TYPE. Aggregated fields are not allowed inside CAST.TYPE can be NUMBER, TEXT, or DATETIME.CAST(field_expression AS TYPE)
Truyền trường hoặc biểu thức vào TYPE. Các trường tổng hợp không được phép bên trong CAST.TYPE có thể là NUMBER, TEXT hoặc DATETIME.
MiscellaneousHYPERLINKReturns a hyperlink to the URL, labeled with the link label.HYPERLINK(URL, link label)
Trả về một siêu liên kết tới URL, được gắn nhãn liên kết.
MiscellaneousIMAGECreates Image fields in your data sourceIMAGE(Image URL, [Alternative Text])
Tạo trường Hình ảnh trong nguồn dữ liệu của bạn
MiscellaneousNATIVE_DIMENSIONReturns the result of a SQL expression as evaluated by the underlying dataset. The expression cannot include any aggregations.NATIVE_DIMENSION("JSON_VALUE('{"name": "Dana"}', '$.name')","STRING")
Trả về kết quả của một biểu thức SQL được đánh giá bởi tập dữ liệu cơ bản. Biểu thức không thể bao gồm bất kỳ tập hợp nào.
TextCONCATReturns a text that is the concatenation of X and Y.CONCAT(X, Y)
Trả về văn bản là sự kết hợp của X và Y.
TextCONTAINS_TEXTReturns true if X contains text, otherwise returns false. Case-sensitive.CONTAINS_TEXT(X, text)
Trả về true nếu X chứa văn bản, nếu không thì trả về false. Phân biệt chữ hoa chữ thường.
TextENDS_WITHReturns true if X ends with text, otherwise returns false. Case-sensitive.ENDS_WITH(X, text)
Trả về true nếu X kết thúc bằng văn bản, nếu không thì trả về false. Phân biệt chữ hoa chữ thường.
TextLEFT_TEXTReturns a number of characters from the beginning of X. The number of characters is specified by length.LEFT_TEXT(X, length)
Trả về một số ký tự từ đầu X. Số lượng ký tự được chỉ định theo độ dài.
TextLENGTHReturns the number of characters in X.LENGTH(X)
Trả về số ký tự trong X.
TextLOWERConverts X to lowercase.LOWER(X)
Chuyển đổi X thành chữ thường.
TextREGEXP_CONTAINSReturns true if X contains the regular expression pattern, otherwise returns false.REGEXP_CONTAINS(X, regular_expression)
Trả về true nếu X chứa mẫu biểu thức chính quy, nếu không thì trả về false.
TextREGEXP_EXTRACTReturns first matching substring in X which matches the regular expression pattern.REGEXP_EXTRACT(X, regular_expression)
Trả về chuỗi con phù hợp đầu tiên trong X khớp với mẫu biểu thức chính quy.
TextREGEXP_MATCHReturns true if X matches the regular expression pattern, otherwise returns false.REGEXP_MATCH(X, regular_expression)
Trả về true nếu X khớp với mẫu biểu thức chính quy, nếu không thì trả về false.
TextREGEXP_REPLACEReplaces all occurrences of text which matches the regular expression pattern in X with the replacement string.REGEXP_REPLACE(X, regular_expression, replacement)
Thay thế tất cả các lần xuất hiện của văn bản khớp với mẫu biểu thức chính quy trong X bằng chuỗi thay thế.
TextREPLACEReturns a copy of X with all occurrences of Y in X replaced by Z.REPLACE(X, Y, Z)
Trả về một bản sao của X với tất cả các lần xuất hiện của Y trong X được thay thế bằng Z.
TextRIGHT_TEXTReturns a number of characters from the end of X. The number of characters is specified by length.RIGHT_TEXT(X, length)
Trả về một số ký tự từ cuối X. Số lượng ký tự được chỉ định theo độ dài.
TextSTARTS_WITHReturns true if X starts with text. Otherwise, returns false. Case-sensitive.STARTS_WITH(X, text)
Trả về true nếu X bắt đầu bằng văn bản. Nếu không, trả về sai. Phân biệt chữ hoa chữ thường.
TextSUBSTRReturns a text that is a substring of X. The substring begins at start index and is length characters long.SUBSTR(X, start index, length)
Trả về văn bản là chuỗi con của X. Chuỗi con bắt đầu ở chỉ mục bắt đầu và có độ dài ký tự.
TextTRIMReturns X with leading and trailing spaces removed.TRIM(X)
Trả về X đã loại bỏ khoảng trắng ở đầu và cuối.
TextUPPERConverts X to uppercase.UPPER(X)
Chuyển X thành chữ hoa.

Đăng nhận xét

Mới hơn Cũ hơn

POST ADS1

POST ADS 2