Skip to content

Instantly share code, notes, and snippets.

@MarissaJ
Last active August 24, 2022 02:10
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MarissaJ/0cc2f3926c5e80207d145d89fa7dbb70 to your computer and use it in GitHub Desktop.
Save MarissaJ/0cc2f3926c5e80207d145d89fa7dbb70 to your computer and use it in GitHub Desktop.
After Effects Data Driven Expression- All Column Data with Line Break
values = [];
for(i=0;i<=thisComp.layer("Data-Sample.csv")("Data")("Number of Rows")-1;i++) {   
  values.push(thisComp.layer("Data-Sample.csv")("Data")("Outline")("Text Data")("Text Data " + i).value);
} values.join("\n");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment