May 28, 2023 10:45 PM - edited May 28, 2023 10:49 PM
Hello,
I'm trying to find a way to be able to export a view in a .txt file based on a template.
Example view:
Template would be like:
Hello {Name} {Lastname}, you are a {Age} {Gender}
So the .txt file would look like:
Hello Martin Shelvi, you are a 22 Male
Hello Lara Croft, you are a 29 Female
Solved! Go to Solution.
May 28, 2023 11:55 PM
You can't export as .txt natively but you can export as .csv and open it in a text editor like Notepad/TextEdit.
Create a formula field with the following formula:
"Hello " & {Name} & " " & {Lastname} & ", you are a " & {Age} & " " & {Gender}
Then, either
1. copy and paste only this field into a .txt file
or
2. make it your table's primary field + create a new view with just this field unhidden + export as .csv and open in a text editor
May 28, 2023 11:55 PM
You can't export as .txt natively but you can export as .csv and open it in a text editor like Notepad/TextEdit.
Create a formula field with the following formula:
"Hello " & {Name} & " " & {Lastname} & ", you are a " & {Age} & " " & {Gender}
Then, either
1. copy and paste only this field into a .txt file
or
2. make it your table's primary field + create a new view with just this field unhidden + export as .csv and open in a text editor
May 29, 2023 04:42 AM
Awesome! Works great. Thank you ❤️