Forked from wvpv/sfmc-ampscript-lookup-multiple-column-single-row.amp
Created
February 6, 2017 18:34
-
-
Save katydorjee/d11da953bf29cadfd7a7f0ae64aea64b to your computer and use it in GitHub Desktop.
SFMC AMScript Lookup multiple column values from a single row
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%%[ | |
var @rows, @row, @rowCount | |
var @lookupValue | |
set @lookupValue = "whee" | |
set @rows = LookupRows("DataExtensionName","LookupColumn", @lookupValue) | |
set @rowCount = rowcount(@rows) | |
if @rowCount > 0 then | |
var @DEColumn1, @DEColumn2 | |
set @row = row(@rows,1) /* get row #1 */ | |
set @DEColumn1 = field(@row,"DEColumn1") | |
set @DEColumn2 = field(@row,"DEColumn2") | |
]%% | |
DEColumn1 is %%=v(@DEColumn1)=%%, DEColumn2 is %%=v(@DEColumn2)=%% | |
%%[ else ]%% | |
No rows found | |
%%[ endif ]%% |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment