Export of Empty Values¶
What is new - 8.1¶
Exporting to CSV files has changed for objects that contain no value. In version 8 and older, these values were not exported, while in version 8.1 and higher, an empty string will be exported.
Before the change, the CSV file could be:
"1","Data Access Worldwide","2022"
"Data Access Worldwide","2023"
"2","Data Access Europe","2022"
After the change, it will be:
"1","Data Access Worldwide","2022"
"","Data Access Worldwide","2023"
"2","Data Access Europe","2022"