This forum is no longer open and is for reading/searching only.
Please use our new MachForm Community Forum instead.
MachForm Community Forums » MachForm 3
column names
Started 12 years ago by msavi | 2 posts |
-
when i export the column name is the name of the field. this is causing problems because my form has 45 fields. the labels are questions which sometimes take up two lines. each day we export the data. the header is too long and we can not edit it each day. do u have a solution?
thank you
Posted 12 years ago # -
You can try edit the "export_entries.php" file, search around line 224 for this code:
$element_type = $row['element_type']; $element_constraint = $row['element_constraint'];
exactly below that code, add this:
$row['element_title'] = '#';
that should replace most of your column name to "#". You can change it to any character/word you want.
MachForm Founder
Posted 12 years ago #
Reply
You must log in to post.