by dev | Apr 21, 2018 | Book
UpsertMSCRMRecord This function retrieves a record from Microsoft Dynamics CRM, using the name and value pairs to filter the results. The results are then sorted using the sort field and order specified. Records are updated with the name and value pairs from the...
by dev | Apr 21, 2018 | Book
Add This function returns the sum of two numbers. Arguments Add(1,2) Ordinal Type Required Description 1 Number True First value 2 Number True Second value Example 1 %%[ var @sum, @num1, @num2 set @num1 = 5 set @num2 = 42 set @sum = Add(@num1, @num2) ]%%...
by dev | Apr 21, 2018 | Book
Overview In addition to the set of personalization strings available for MobileConnect, Marketing Cloud also includes AMPscript functions for using SMS conversations in MobileConnect. SMS conversations enable message chains to be created. In a conversation,...
by dev | Apr 21, 2018 | Book
Divide This function returns the result (quotient) of dividing the first parameter by the second parameter. Arguments Divide(1,2) Ordinal Type Required Description 1 Number True Value to be divided (dividend) 2 Number True Value to divide by (divisor) Example 1 %%[...
by dev | Apr 21, 2018 | Book
CreateSmsConversation While MobileConnect includes the ability to create conversations through assigning Next Keywords to message templates, this function provides the ability to conditionally create a conversation and can dynamically define the Next Keyword to use,...
by dev | Apr 21, 2018 | Book
Mod This function returns the remainder after the division of two numbers (also known as a modulo operation). Arguments Mod(1,2) Ordinal Type Required Description 1 Number True Value to be divided (dividend) 2 Number True Value to divide by (divisor) NOTE: This...