Rows.Update
Overview
Updates the specified row with the specified informationSyntax
Rows.Update(1, 2, 3)
| Ordinal | Type | Description | |
|---|---|---|---|
| 1 | string | Required | Name of column to update and value used to update |
| 2 | string | Required | Identifies columns to search for data |
| 3 | string | Required | Identifies values used for search |
Example
This sample code finds the assigned field in the specified row in birthdayDE and updates it with the new age information.
var birthdayDE = DataExtension.Init("birthdayDE");
birthdayDE.Rows.Update({Age:"25"}, ["FirstName"], ["Angel"]);