Hello, This idea described below was partially inspired by "gnuplot contemptations", but mainly because writing tables with both LaTeX & ConTeXt is too complex in most cases. Natural tables are great since they offer anough flexibility to do "just about anything" with tables, but many tables are still simple "m values in n rows" and for those it's an annoying task to write those "\NC"s, "\eTR\bTR"s, ... even if it's just a matter of writing a script to transform the values to a suitable form. Christopher Creutzig has sent an interesting solution to the mailing list some time ago (see http://wiki.contextgarden.net/TABLE#Creating_tables_from_CSV_data_.28Comma_S...) and since then I've been thinking about a similar, slightly more powerful solution which could make table-typesetiting easier. I don't have enough skills to implement it, but here are some properties listed that such a solution should have. In case anyone finds this little project doable ... It would solve quite some headaches. - [very important] a possibility to define own macros, so that it would be easy to print any type of tables (natural tables, TaBlEs, ... or whatever form that could possibly come to someone's mind); for example \def\MyDef#1#2{\bTR\bTD#1\eTD\bTD#2\eTD\eTR}; the "machinery behind" would only have to "feed" these macros properly according - [important] possible to separate the data with different characters: tab, comma, multiple spaces, ampersand (&), ... - [very useful] a possibility to read the data from a block (\start...\stop...) or from a file; it would be handly to be able to use the same data file for making a plot and for printing the data into a table - [useful] possibility to ignore lines starting with '#' (optional; usually these are comments) - [not crucial] if comma (,) is separating the data, a possibility to escape it - [useful] a possibility to select which rows (columns) to print (for example rows "1-3,8-last" or "even", ...) - [optional, but still useful] replacing decimal points with commas - [optional] if the table was supposed to have 4 colums and only 2 are available, ignore/fill with empty arguments (don't panic with unnecessary errors) - [with luaTeX in mind] calculating sums of rows & columns & other Excel-like calculations & references accross tables ;) - well, that one wasn't meant seriously. Thanks a lot, Mojca