Logo
Unify Automations
Logo
Formula Suggestions

Formula Suggestions

Logo

11 mins READ

OverviewΒ 

Formulas by UnifyApps are expressions used to perform calculations, manipulate data, and automate tasks. They enable users to process numerical data, text, dates, and logical conditions to derive results efficiently.

Why Do We Need Formulas?

- Automation: Repeated manual calculations are tedious and error-prone. Formulas help automate these tasks, ensuring accuracy and consistency.

- Data Analysis: Formulas allow users to analyze large datasets by calculating averages, sums, percentages, and more to derive insights.

- Efficiency: Formulas offer speed for complex calculations, accuracy by reducing human error, scalability to handle large datasets, and flexibility with a wide range of mathematical, statistical, and logical functions.

- Logical Operations: Excel formulas allow for conditional evaluations, such as checking if values meet certain criteria (IF(), AND(), OR()).

How to use formulas in automation ?

A formula can be invoked by using an equals sign (=) and may contain:

  • Operators like +, -, *, / for mathematical operations.

  • Node field references to work with values from specific automation nodes.

  • Functions like SUM(), LEN(), NOW() to perform predefined calculations.

Example

In this use case, we are sending messages to our internal Slack channel for all Zendesk support tickets that have not yet been acknowledged.

Workflow Overview:

  1. Hourly Scheduler: A scheduler runs every hour, fetching all ticket IDs from the object that were created in the last hour.

  2. Comment Check: For each ticket, the system checks whether any comments are present.

  3. Slack Notification: If a ticket has no comments, a message is posted to our internal Slack channel.

Frame 4678.png
Frame 4678.png

Formulas Used:

  • NOW(): Retrieves the current date and time to identify tickets created in the last hour.

    Frame 4680.png
    Frame 4680.png

  • INT(): Converts numeric values into integers as ticket id is stored in string format in object.

    Frame 4681.png
    Frame 4681.png

  • LEN(): Checks the length of comments to verify if any comment is posted on ticket or not

    Frame 4679.png
    Frame 4679.png

  • CONCAT(): Combines different text elements, such as ticket details, to form the message for Slack.

Supported Formulae

FormulaDescriptionSupported data typesSyntax
LENReturns the length of the string, arraytext/arrayLEN( πŸ“¦ Order ID )
ABSReturns the absolute value of a numbernumberABS( πŸ’° Amount )
ACOSReturns the arccosine of a numbernumberACOS( πŸ“Š Cosine Value )
ACOSHReturns the inverse hyperbolic cosine of a numbernumberACOSH( πŸ“ˆ Hyperbolic Cosine )
ADDRESSReturns a cell reference as textrow columnADDRESS( πŸ”’ Row πŸ”  Column )
ANDReturns TRUE if all arguments are TRUElogical1, [logical2, ...]AND( βœ… Condition 1, βœ… Condition 2 )
AREASReturns the number of areas in a referencereferenceAREAS( πŸ“ Cell Range )
ASINReturns the arcsine of a numbernumberASIN( πŸ“Š Sine Value )
ASINHReturns the inverse hyperbolic sine of a numbernumberASINH( πŸ“ˆ Hyperbolic Sine )
ATANReturns the arctangent of a numbernumberATAN( πŸ“Š Tangent Value )
ATAN2Returns the arctangent from x- and y-coordinateslist of numbersATAN2( πŸ“ X-Coordinate πŸ“ Y-Coordinate )
ATANHReturns the inverse hyperbolic tangent of a numbernumberATANH( πŸ“ˆ Hyperbolic Tangent )
AVEDEVReturns the average of the absolute deviations of data points from their meannumber1, [number2, ...]AVEDEV( πŸ”’ Number 1 πŸ”’ Number 2 πŸ”’ Number 3 )
AVERAGEReturns the average of its argumentsnumber1, [number2, ...]AVERAGE( πŸ’― Score 1 πŸ’― Score 2 πŸ’― Score 3 )
AVERAGEAReturns the average of its arguments including numbers text and logical valuesvalue1, [value2, ...]AVERAGEA( πŸ“Š Value 1 πŸ“Š Value 2 πŸ“Š Value 3 )
CEILINGRounds a number up to the nearest integer or multiple of significancenumberCEILING( πŸ”’ Number )
CHARReturns the character specified by a numbernumberCHAR( πŸ”’ ASCII Code )
CHOOSEChooses a value from a list of valuesindex_num, value1, [value2, ...]CHOOSE( πŸ”’ Index πŸ“Š Value 1 πŸ“Š Value 2 πŸ“Š Value 3 )
CLEANRemoves all non-printable characters from texttextCLEAN( πŸ“ Text )
CODEReturns a numeric code for the first character in a text stringtextCODE( πŸ”€ Character )
COLUMNReturns the column number of a reference[reference]COLUMN( πŸ“ Cell Reference )
COLUMNSReturns the number of columns in a referencearrayCOLUMNS( πŸ“Š Array )
COMBINReturns the number of combinations for a given number of objectsnumber, number_chosenCOMBIN( πŸ”’ Total πŸ”’ Chosen )
CONCATENATEJoins several text items into one text itemtext1, [text2, ...]CONCATENATE( πŸ“ Text 1 πŸ“ Text 2 )
CORRELReturns the correlation coefficient between two data setsarray1, array2CORREL( πŸ“Š Array 1 πŸ“Š Array 2 )
COSReturns the cosine of a numbernumberCOS( πŸ“ Angle )
COSHReturns the hyperbolic cosine of a numbernumberCOSH( πŸ”’ Number )
COUNTCounts how many numbers are in the list of argumentsvalue1, [value2, ...]COUNT( πŸ”’ Value 1 πŸ”’ Value 2 πŸ”’ Value 3 )
COUNTACounts how many values are in the list of argumentsvalue1, [value2, ...]COUNTA( πŸ“Š Value 1 πŸ“Š Value 2 πŸ“Š Value 3 )
COUNTBLANKCounts the number of blank cells within a rangerangeCOUNTBLANK( πŸ“ Range )
COUNTIFCounts the number of cells within a range that meet the given criteriarange, criteriaCOUNTIF( πŸ“ Range πŸ“Œ Criteria )
COVARReturns covariance the average of the products of paired deviationsarray1, array2COVAR( πŸ“Š Array 1 πŸ“Š Array 2 )
DATEReturns the serial number of a particular dateyear, month, dayDATE( πŸ“… Year πŸ“… Month πŸ“… Day )
DATEVALUEConverts a date in the form of text to a serial numberdate_textDATEVALUE( πŸ“ Date Text )
DAVERAGEAverages the values in a column of a list or database that match conditions you specifydatabase, field, criteriaDAVERAGE( πŸ“Š Database 🏷️ Field πŸ“Œ Criteria )
DAYConverts a serial number to a day of the monthserial_numberDAY( πŸ“… Date )
DAYS360Calculates the number of days between two dates based on a 360-day yearstart_date, end_date, [method]DAYS360( πŸ“… Start Date πŸ“… End Date )
DCOUNTCounts the cells containing numbers in a column of a list or database that match conditions that you specifydatabase, field, criteriaDCOUNT( πŸ“Š Database 🏷️ Field πŸ“Œ Criteria )
DCOUNTACounts nonblank cells in a column of a list or database that match conditions that you specifydatabase, field, criteriaDCOUNTA( πŸ“Š Database 🏷️ Field πŸ“Œ Criteria )
DEGREESConverts radians to degreesangleDEGREES( πŸ“ Angle )
DEVSQReturns the sum of squares of deviationsnumber1, [number2, ...]DEVSQ( πŸ”’ Number 1 πŸ”’ Number 2 πŸ”’ Number 3 )
DGETExtracts from a database a single record that matches the specified criteriadatabase, field, criteriaDGET( πŸ“Š Database 🏷️ Field πŸ“Œ Criteria )
DMAXReturns the maximum value from selected database entriesdatabase, field, criteriaDMAX( πŸ“Š Database 🏷️ Field πŸ“Œ Criteria )
DMINReturns the minimum value from selected database entriesdatabase, field, criteriaDMIN( πŸ“Š Database 🏷️ Field πŸ“Œ Criteria )
DOLLARConverts a number to text using currency formatnumber, [decimals]DOLLAR( πŸ’° Amount πŸ”’ Decimals )
DPRODUCTMultiplies the values in a column of a list or database that match conditions that you specifydatabase, field, criteriaDPRODUCT( πŸ“Š Database 🏷️ Field πŸ“Œ Criteria )
DSTDEVEstimates the standard deviation based on a sample from selected database entriesdatabase, field, criteriaDSTDEV( πŸ“Š Database 🏷️ Field πŸ“Œ Criteria )
DSTDEVPCalculates the standard deviation based on the entire population of selected database entriesdatabase, field, criteriaDSTDEVP( πŸ“Š Database 🏷️ Field πŸ“Œ Criteria )
DSUMAdds the numbers in a column of a list or database that match conditions that you specifydatabase, field, criteriaDSUM( πŸ“Š Database 🏷️ Field πŸ“Œ Criteria )
DVAREstimates variance based on a sample from selected database entriesdatabase, field, criteriaDVAR( πŸ“Š Database 🏷️ Field πŸ“Œ Criteria )
DVARPCalculates variance based on the entire population of selected database entriesdatabase, field, criteriaDVARP( πŸ“Š Database 🏷️ Field πŸ“Œ Criteria )
ERROR.TYPEReturns a number corresponding to an error typeerror_valERROR.TYPE( ❌ Error Value )
EVENRounds a number up to the nearest even integernumberEVEN( πŸ”’ Number )
EXACTChecks to see if two text values are identicaltext1, text2EXACT( πŸ“ Text 1 πŸ“ Text 2 )
EXPReturns e raised to the power of a given numbernumberEXP( πŸ”’ Power )
FACTReturns the factorial of a numbernumberFACT( πŸ”’ Number )
FALSEReturns the logical value FALSEFALSE()
FINDFinds one text value within another (case-sensitive)find_text, within_text, [start_num]FIND( πŸ” Find Text πŸ“ Within Text πŸ”’ Start Position )
FIXEDFormats a number as text with a fixed number of decimalsnumber, [decimals], [no_commas]FIXED( πŸ”’ Number πŸ”’ Decimals )
FLOORRounds a number down to the nearest multiple of significancenumber, significanceFLOOR( πŸ”’ Number πŸ”’ Significance )
FORECASTCalculates a future value using existing valuesx, known_y's, known_x'sFORECAST( πŸ”’ X Value πŸ“Š Known Y's πŸ“Š Known X's )
FREQUENCYCalculates how often values occur within a range of valuesdata_array, bins_arrayFREQUENCY( πŸ“Š Data Array πŸ“Š Bins Array )
FVReturns the future value of an investmentrate, nper, pmt, [pv], [type]FV( πŸ“Š Rate πŸ”’ Periods πŸ’° Payment πŸ’° Present Value )
GEOMEANReturns the geometric meannumber1, [number2, ...]GEOMEAN( πŸ”’ Number 1 πŸ”’ Number 2 πŸ”’ Number 3 )
HLOOKUPLooks for a value in the top row of a table or an array and returns the value in the same column from a row you specifylookup_value, table_array, row_index_num, [range_lookup]HLOOKUP( πŸ” Lookup Value πŸ“Š Table Array πŸ”’ Row Index )
HOURConverts a serial number to an hourserial_numberHOUR( πŸ•’ Time )
HYPERLINKCreates a shortcut or jump that opens a document stored on your hard drive network server or on the Internetlink_location, [friendly_name]HYPERLINK( πŸ”— URL πŸ“ Display Text )
IFSpecifies a logical test to performlogical_test, [value_if_true], [value_if_false]IF( ❓ Condition πŸ“Š True Result πŸ“Š False Result )
INDEXReturns a value or the reference to a value from within a table or rangearray, row_num, [column_num]INDEX( πŸ“Š Array πŸ”’ Row πŸ”’ Column )
INDIRECTReturns a reference specified by a text stringref_textINDIRECT( πŸ“ Reference Text )
INTRounds a number down to the nearest integernumberINT( πŸ”’ Number )
INTERCEPTReturns the intercept of the linear regression lineknown_x's, known_y'sINTERCEPT( πŸ“Š Known X's πŸ“Š Known Y's )
IPMTReturns the interest payment for an investment for a given periodrate, per, nper, pv, [fv], [type]IPMT( πŸ“Š Rate πŸ”’ Period πŸ”’ Num Periods πŸ’° Present Value )
IRRReturns the internal rate of return for a series of cash flowsvalues, [guess]IRR( πŸ’° Cash Flows πŸ”’ Guess )
ISBLANKReturns TRUE if the value is blankvalueISBLANK( πŸ“Š Value )
ISERRReturns TRUE if the value is any error value except #N/AvalueISERR( πŸ“Š Value )
ISERRORReturns TRUE if the value is any error valuevalueISERROR( πŸ“Š Value )
ISLOGICALReturns TRUE if the value is a logical valuevalueISLOGICAL( πŸ“Š Value )
ISNAReturns TRUE if the value is the #N/A error valuevalueISNA( πŸ“Š Value )
ISNONTEXTReturns TRUE if the value is not textvalueISNONTEXT( πŸ“Š Value )
ISNUMBERReturns TRUE if the value is a numbervalueISNUMBER( πŸ“Š Value )
ISREFReturns TRUE if the value is a referencevalueISREF( πŸ“Š Value )
ISTEXTReturns TRUE if the value is textvalueISTEXT( πŸ“Š Value )
LARGEReturns the k-th largest value in a data setarray, kLARGE( πŸ“Š Array πŸ”’ K )
LEFTReturns the leftmost characters from a text valuetext, [num_chars]LEFT( πŸ“ Text πŸ”’ Num Chars )
LNReturns the natural logarithm of a numbernumberLN( πŸ”’ Number )
LOGReturns the logarithm of a number to a specified basenumber, [base]LOG( πŸ”’ Number πŸ”’ Base )
LOG10Returns the base-10 logarithm of a numbernumberLOG10( πŸ”’ Number )
LOOKUPLooks up values in a vector or arraylookup_value, lookup_vector, [result_vector]LOOKUP( πŸ” Lookup Value πŸ“Š Lookup Vector πŸ“Š Result Vector )
LOWERConverts text to lowercasetextLOWER( πŸ“ Text )
MATCHLooks up values in a reference or arraylookup_value, lookup_array, [match_type]MATCH( πŸ” Lookup Value πŸ“Š Lookup Array πŸ”’ Match Type )
MAXReturns the maximum value in a list of argumentsnumber1, [number2, ...]MAX( πŸ”’ Number 1 πŸ”’ Number 2 πŸ”’ Number 3 )
MAXAReturns the maximum value in a list of arguments including numbers text and logical valuesvalue1, [value2, ...]MAXA( πŸ“Š Value 1 πŸ“Š Value 2 πŸ“Š Value 3 )
MDETERMReturns the matrix determinant of an arrayarrayMDETERM( πŸ“Š Array )
MEDIANReturns the median of the given numbersnumber1, [number2, ...]MEDIAN( πŸ”’ Number 1 πŸ”’ Number 2 πŸ”’ Number 3 )
MIDReturns a specific number of characters from a text string starting at the position you specifytext, start_num, num_charsMID( πŸ“ Text πŸ”’ Start πŸ”’ Num Chars )
MINReturns the minimum value in a list of argumentsnumber1, [number2, ...]MIN( πŸ”’ Number 1 πŸ”’ Number 2 πŸ”’ Number 3 )
MINAReturns the smallest value in a list of arguments including numbers text and logical valuesvalue1, [value2, ...]MINA( πŸ“Š Value 1 πŸ“Š Value 2 πŸ“Š Value 3 )
MINUTEConverts a serial number to a minuteserial_numberMINUTE( πŸ•’ Time )
MINVERSEReturns the matrix inverse of an arrayarrayMINVERSE( πŸ“Š Array )
MIRRReturns the modified internal rate of return for a series of periodic cash flowsvalues, finance_rate, reinvest_rateMIRR( πŸ’° Cash Flows πŸ“Š Finance Rate πŸ“Š Reinvest Rate )
MMULTReturns the matrix product of two arraysarray1, array2MMULT( πŸ“Š Array 1 πŸ“Š Array 2 )
MODReturns the remainder from divisionnumber, divisorMOD( πŸ”’ Number πŸ”’ Divisor )
MODEReturns the most common value in a data setnumber1, [number2, ...]MODE( πŸ”’ Number 1 πŸ”’ Number 2 πŸ”’ Number 3 )
MONTHConverts a serial number to a monthserial_numberMONTH( πŸ“… Date )
NORMDISTReturns the normal distributionx, mean, standard_dev, cumulativeNORMDIST( πŸ”’ X πŸ“Š Mean πŸ“Š Standard Dev πŸ“Š Cumulative )
NORMINVReturns the inverse of the normal cumulative distributionprobability, mean, standard_devNORMINV( πŸ“Š Probability πŸ“Š Mean πŸ“Š Standard Dev )
NORMSDISTReturns the standard normal cumulative distributionnumberNORMSDIST( πŸ”’ Z )
NORMSINVReturns the inverse of the standard normal cumulative distributionprobabilityNORMSINV( πŸ“Š Probability )
NOTReverses the logic of its argumentlogicalNOT( ❓ Logical )
NOWReturns the serial number of the current date and time-NOW()
NPERReturns the number of periods for an investmentrate, pmt, pv, [fv], [type]NPER( πŸ“Š Rate πŸ’° Payment πŸ’° Present Value )
NPVReturns the net present value of an investment based on a series of periodic cash flows and a discount raterate, value1, [value2, ...]NPV( πŸ“Š Rate πŸ’° Value 1 πŸ’° Value 2 )
ODDRounds a number up to the nearest odd integernumberODD( πŸ”’ Number )
OFFSETReturns a reference offset from a given referencereference, rows, cols, [height], [width]OFFSET( πŸ“ Reference πŸ”’ Rows πŸ”’ Columns )
ORReturns TRUE if any argument is TRUElogical1, [logical2, ...]OR( ❓ Logical 1 ❓ Logical 2 )
PEARSONReturns the Pearson product moment correlation coefficientarray1, array2PEARSON( πŸ“Š Array 1 πŸ“Š Array 2 )
PERCENTILEReturns the k-th percentile of values in a rangearray, kPERCENTILE( πŸ“Š Array πŸ”’ K )
PERCENTRANKReturns the percentage rank of a value in a data setarray, x, [significance]PERCENTRANK( πŸ“Š Array πŸ”’ X )
PIReturns the value of piPI()
PMTReturns the periodic payment for an annuityrate, nper, pv, [fv], [type]PMT( πŸ“Š Rate πŸ”’ Num Periods πŸ’° Present Value )
POISSONReturns the Poisson distributionx, mean, cumulativePOISSON( πŸ”’ X πŸ“Š Mean ❓ Cumulative )
POWERReturns the result of a number raised to a powernumber, powerPOWER( πŸ”’ Base πŸ”’ Exponent )
PPMTReturns the payment on the principal for an investment for a given periodrate, per, nper, pv, [fv], [type]PPMT( πŸ“Š Rate πŸ”’ Period πŸ”’ Num Periods πŸ’° Present Value )
PRODUCTMultiplies its argumentsnumber1, [number2, ...]PRODUCT( πŸ”’ Number 1 πŸ”’ Number 2 πŸ”’ Number 3 )
PROPERCapitalizes the first letter in each word of a text valuetextPROPER( πŸ“ Text )
PVReturns the present value of an investmentrate, nper, pmt, [fv], [type]PV( πŸ“Š Rate πŸ”’ Num Periods πŸ’° Payment )
RADIANSConverts degrees to radiansangleRADIANS( πŸ“ Angle )
RANDReturns a random number between 0 and 1RAND()
RANKReturns the rank of a number in a list of numbersnumber, ref, [order]RANK( πŸ”’ Number πŸ“Š Reference )
RATEReturns the interest rate per period of an annuitynper, pmt, pv, [fv], [type], [guess]RATE( πŸ”’ Num Periods πŸ’° Payment πŸ’° Present Value )
REPLACEReplaces characters within textold_text, start_num, num_chars, new_textREPLACE( πŸ“ Old Text πŸ”’ Start πŸ”’ Num Chars πŸ“ New Text )
REPTRepeats text a given number of timestext, number_timesREPT( πŸ“ Text πŸ”’ Times )
RIGHTReturns the rightmost characters from a text valuetext, [num_chars]RIGHT( πŸ“ Text πŸ”’ Num Chars )
ROMANConverts an arabic numeral to roman as textnumber, [form]ROMAN( πŸ”’ Number )
ROUNDRounds a number to a specified number of digitsnumber, num_digitsROUND( πŸ”’ Number πŸ”’ Digits )
ROUNDDOWNRounds a number down toward zeronumber, num_digitsROUNDDOWN( πŸ”’ Number πŸ”’ Digits )
ROUNDUPRounds a number up away from zeronumber, num_digitsROUNDUP( πŸ”’ Number πŸ”’ Digits )
ROWReturns the row number of a reference[reference]ROW( πŸ“ Reference )
ROWSReturns the number of rows in a referencearrayROWS( πŸ“Š Array )
SEARCHFinds one text value within another (not case-sensitive)find_text, within_text, [start_num]SEARCH( πŸ” Find Text πŸ“ Within Text πŸ”’ Start )
SECONDConverts a serial number to a secondserial_numberSECOND( πŸ•’ Time )
SIGNReturns the sign of a numbernumberSIGN( πŸ”’ Number )
SINReturns the sine of the given anglenumberSIN( πŸ“ Angle )
SINHReturns the hyperbolic sine of a numbernumberSINH( πŸ”’ Number )
SLOPEReturns the slope of the linear regression lineknown_y's, known_x'sSLOPE( πŸ“Š Known Y's πŸ“Š Known X's )
SMALLReturns the k-th smallest value in a data setarray, kSMALL( πŸ“Š Array πŸ”’ K )
SQRTReturns a positive square rootnumberSQRT( πŸ”’ Number )
STANDARDIZEReturns a normalized valuex, mean, standard_devSTANDARDIZE( πŸ”’ X πŸ“Š Mean πŸ“Š Standard Dev )
STDEVEstimates standard deviation based on a samplenumber1, [number2, ...]STDEV( πŸ”’ Number 1 πŸ”’ Number 2 πŸ”’ Number 3 )
STDEVAEstimates standard deviation based on a sample including numbers text and logical valuesvalue1, [value2, ...]STDEVA( πŸ“Š Value 1 πŸ“Š Value 2 πŸ“Š Value 3 )
STDEVPCalculates standard deviation based on the entire populationnumber1, [number2, ...]STDEVP( πŸ”’ Number 1 πŸ”’ Number 2 πŸ”’ Number 3 )
STDEVPACalculates standard deviation based on the entire population including numbers text and logical valuesvalue1, [value2, ...]STDEVPA( πŸ“Š Value 1 πŸ“Š Value 2 πŸ“Š Value 3 )
SUBSTITUTESubstitutes new text for old text in a text stringtext, old_text, new_text, [instance_num]SUBSTITUTE( πŸ“ Text πŸ“ Old Text πŸ“ New Text )
SUBTOTALReturns a subtotal in a list or databasefunction_num, ref1, [ref2, ...]SUBTOTAL( πŸ”’ Function Num πŸ“ Ref 1 πŸ“ Ref 2 )
SUMAdds its argumentsnumber1, [number2, ...]SUM( πŸ”’ Number 1 πŸ”’ Number 2 πŸ”’ Number 3 )
SUMIFAdds the cells specified by a given criteriarange, criteria, [sum_range]SUMIF( πŸ“ Range πŸ“Œ Criteria πŸ“ Sum Range )
SUMPRODUCTReturns the sum of the products of corresponding array componentsarray1, [array2, ...]SUMPRODUCT( πŸ“Š Array 1 πŸ“Š Array 2 )
SUMSQReturns the sum of the squares of the argumentsnumber1, [number2, ...]SUMSQ( πŸ”’ Number 1 πŸ”’ Number 2 πŸ”’ Number 3 )
SUMX2MY2Returns the sum of the difference of squares of corresponding values in two arraysarray_x, array_ySUMX2MY2( πŸ“Š Array X πŸ“Š Array Y )
SUMX2PY2Returns the sum of the sum of squares of corresponding values in two arraysarray_x, array_ySUMX2PY2( πŸ“Š Array X πŸ“Š Array Y )
SUMXMY2Returns the sum of squares of differences of corresponding values in two arraysarray_x, array_ySUMXMY2( πŸ“Š Array X πŸ“Š Array Y )
TConverts its arguments to textvalueT( πŸ“Š Value )
TANReturns the tangent of a numbernumberTAN( πŸ“ Angle )
TANHReturns the hyperbolic tangent of a numbernumberTANH( πŸ”’ Number )
TDISTReturns the Student's t-distributionx, deg_freedom, tailsTDIST( πŸ”’ X πŸ”’ Degrees of Freedom πŸ”’ Tails )
TEXTFormats a number and converts it to textvalue, format_textTEXT( πŸ”’ Value πŸ“ Format Text )
TIMEReturns the serial number of a particular timehour, minute, secondTIME( πŸ•’ Hour πŸ•’ Minute πŸ•’ Second )
TIMEVALUEConverts a text time to a serial numbertime_textTIMEVALUE( πŸ“ Time Text )
TODAYReturns the serial number of today's dateTODAY()
TRANSPOSEReturns the transpose of an arrayarrayTRANSPOSE( πŸ“Š Array )
TRENDReturns values along a linear trendknown_y's, [known_x's], [new_x's], [const]TREND( πŸ“Š Known Y's πŸ“Š Known X's πŸ“Š New X's )
TRIMRemoves spaces from texttextTRIM( πŸ“ Text )
TRUEReturns the logical value TRUETRUE()
TRUNCTruncates a number to an integernumber, [num_digits]TRUNC( πŸ”’ Number πŸ”’ Digits )
UPPERConverts text to uppercasetextUPPER( πŸ“ Text )
VALUEConverts a text argument to a numbertextVALUE( πŸ“ Text )
VAREstimates variance based on a samplenumber1, [number2, ...]VAR( πŸ”’ Number 1 πŸ”’ Number 2 πŸ”’ Number 3 )
VARAEstimates variance based on a sample including numbers text and logical valuesvalue1, [value2, ...]VARA( πŸ“Š Value 1 πŸ“Š Value 2 πŸ“Š Value 3 )
VARPCalculates variance based on the entire populationnumber1, [number2, ...]VARP( πŸ”’ Number 1 πŸ”’ Number 2 πŸ”’ Number 3 )
VARPACalculates variance based on the entire population including numbers text and logical valuesvalue1, [value2, ...]VARPA( πŸ“Š Value 1 πŸ“Š Value 2 πŸ“Š Value 3 )
VLOOKUPLooks for a value in the leftmost column of a table and returns a value in the same row from a column you specifylookup_value, table_array, col_index_num, [range_lookup]VLOOKUP( πŸ” Lookup Value πŸ“Š Table Array πŸ”’ Column Index )
WEEKDAYConverts a serial number to a day of the weekserial_number, [return_type]WEEKDAY( πŸ“… Date )
YEARConverts a serial number to a yearserial_numberYEAR( πŸ“… Date )