Skip to content

Instantly share code, notes, and snippets.

@MarissaJ
Last active August 24, 2022 02:10
Show Gist options
  • Save MarissaJ/f9c808dc80eee2a95fc214893a8f9f55 to your computer and use it in GitHub Desktop.
Save MarissaJ/f9c808dc80eee2a95fc214893a8f9f55 to your computer and use it in GitHub Desktop.
After Effects Data Driven Expression- Display Column Data with Spaces
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(" ");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment