How to export with custom row format?
-
Hi, I have been requested to export an .xlsx file with the following logic:
Header Order 1
1st ordered product details
2nd ordered product details
3rd ordered product details
Header Order 2
1st ordered product details
Header Order 3
1st ordered product details
etc.Therefore the expected format would be something like this (with a delimiter of “;”)
Type_of_line_0;Order_ID_1;Order_Details
Type_of_line_1;Order_ID_1;Product_1_Details
Type_of_line_1;Order_ID_1;Product_2_Details
Type_of_line_1;Order_ID_1;Product_3_Details
Type_of_line_0;Order_ID_2;Order_Details
Type_of_line_1;Order_ID_2;Product_6_Details
Type_of_line_0;Order_ID_3;Order_Details
Type_of_line_1;Order_ID_3;Product_8_Details
[…]Firstly, does your plugin support this kind of format? Secondly, if it does, how should I go about creating such a file?
So far I have only exported files with the following format:
Order_ID_1;Product_1_Details;More_stuff
Order_ID_1;Product_2_Details;More_stuff
Order_ID_1;Product_3_Details;More_stuff
Order_ID_2;Product_1_Details;More_Stuff
Order_ID_3;Product_28_Details;More_Stuff
[…]Thanks.
- The topic ‘How to export with custom row format?’ is closed to new replies.