Hello Make community, I would like to transform a CSV file into 3 differents ones.
For example I have a file with 5 rows as follow :
Header : code; type; date; value;
001; fruit; 2025-01-01; 13;
002; vegetable; 2025-01-01; 14;
003; fruit; 2025-01-01; 1;
004; dairy; 2025-01-01; 13;
005; fruit; 2025-01-01; 23;
So i’d like 3 files, one with only fruit, one with only vegetables, and one with only dairy.
I can’t find out how to do it with built-in CSV module. Could you help me ?
Thanks a mil !