by dev | Apr 21, 2018 | Book
UpdateMSCRMRecords This function updates one of more records in the specified Microsoft Dynamics CRM entity. It returns the number of records updated. Arguments UpdateMSCRMRecords(1,2,3,4) Ordinal Type Required Description 1 String True Name of the entity for records...
by dev | Apr 21, 2018 | Book
Overview In contrast to many other scripting languages that use operators like +, -,*, and \, AMPscript uses a set of functions for addition, subtraction, multiplication and division. AMPscript also includes specific math functions for performing modulo operations and...
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 %%[...