Skip to content

Instantly share code, notes, and snippets.

@dickiedyce
Created September 7, 2023 19:10
Show Gist options
  • Save dickiedyce/62e87e757aa4b4ab8520bec0635917c9 to your computer and use it in GitHub Desktop.
Save dickiedyce/62e87e757aa4b4ab8520bec0635917c9 to your computer and use it in GitHub Desktop.
Create a Markdown table of fiels in a FileMaker file.
Substitute (
",TableName,FieldName,FieldType,FieldID,FieldClass,FieldReps,ModCount," & ¶ &
",----,----,----,----,----,----,----," & ¶ &
ExecuteSQL (
"SELECT '',TableName,FieldName,FieldType,FieldID,FieldClass,FieldReps,ModCount,'' FROM FILEMAKER_FIELDS" ;
"" ;
""
) ;
"," ;
"|"
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment