Hello,
maybe someone help me.
I try to exportd from one type of object without conditions but according to my own field scheme
Task to do is a text field
Completed is a checkbox
Flagship company and Backup company are a reference fields
Start Date and End Date are date fields
After first run i got csv i show You first two lines bellow
CSV detail
Task to do;Completed;Flagship company;Backup company;Start Date;End Date
Cleaning in Drezno;False;{‘id’: 643, ‘fields’: {‘nazwa-podwykonawcy’: ‘Company 3’, ‘url’: ‘’, ‘osoba-kontaktowa’: ‘Gil Person’, ‘telefon-kontaktowy’: ‘+49 12 213 25 25’, ‘adres-mailowy’: ‘first.person@company.de’}};{‘id’: 119, ‘fields’: {‘nazwa-podwykonawcy’: ‘Company 2’, ‘url’: ‘’, ‘osoba-kontaktowa’: ‘Test Tes’, ‘telefon-kontaktowy’: ‘+12 15 251 33 22’, ‘adres-mailowy’: ‘test.tes@oirkf.eu’}};2020-05-26 00:00:00;2020-05-27 00:00:00
and in table
Task to do | Completed | Flagship company | Backup company | Start Date | End Date |
---|---|---|---|---|---|
Cleaning in Drezno | False | {‘id’: 643, ‘fields’: {‘nazwa-podwykonawcy’: ‘Company 3’, ‘url’: ‘’, ‘osoba-kontaktowa’: ‘Gil Person’, ‘telefon-kontaktowy’: ‘+49 12 213 25 25’, ‘adres-mailowy’: ‘first.person@company.de’}} | {‘id’: 119, ‘fields’: {‘nazwa-podwykonawcy’: ‘Company 2’, ‘url’: ‘’, ‘osoba-kontaktowa’: ‘Test Tes’, ‘telefon-kontaktowy’: ‘+12 15 251 33 22’, ‘adres-mailowy’: ‘test.tes@oirkf.eu’}} | 2020-05-26 00:00 | 2020-05-27 00:00 |
Now I mean one reference field Flagship company
which in csv i see like a
{‘id’: 643, ‘fields’: {‘nazwa-podwykonawcy’: ‘Company 3’, ‘url’: ‘’, ‘osoba-kontaktowa’: ‘Gil Person’, ‘telefon-kontaktowy’: ‘+49 12 213 25 25’, ‘adres-mailowy’: ‘first.person@company.de’}}
For me is important how can i get from this string only value:
Company 3 Gil Person - in one column
So i want to have to line like this:
Task to do;Completed;Flagship company;Backup company;Start Date;End Date
Cleaning in Drezno;False;Company 3 Gil Person;Company 2 Test Tes;2020-05-26 00:00;2020-05-27 00:00
Is it possible?
I tried different ways but so far I couldn’t do it
I currently have this field described as such
{{fields[“flagship-company”]}}
Someone help me how it should be for my needs?