CSV to html – exclude columns
If you want to exclude specific columns from the generated table you could use exclude_cols.
Original
Sweden | 1.6% | 2.2% | 3.2% | 4.5% | 6.9% |
Norway | -6.6% | 1.2% | 1.4% | 1.9% | 2.0% |
Finland | -16.6% | -14.2% | 10.2% | 11.0% | 13.2% |
Iceland | 6.6% | 6.2% | 7.2% | 11.0% | 16.2% |
Denmark | -2.6% | 0% | 2.6% | 2.9% | 2.11% |
With exclude_cols
Shortcode
[csvtohtml_create source_type="visualizer_plugin" path="csvfiles" source_files="sweden;norway;finland;iceland;denmark" exclude_cols="2,3,4"]
Sweden | 4.5% | 6.9% |
Norway | 1.9% | 2.0% |
Finland | 11.0% | 13.2% |
Iceland | 11.0% | 16.2% |
Denmark | 2.9% | 2.11% |
You may also select which columns to exclude by their actual names, so instead of 2,3,4 you could type 2011,2012,2013.
Shortcode
[csvtohtml_create source_type="visualizer_plugin" path="csvfiles" source_files="sweden;norway;finland;iceland;denmark" exclude-cols="2011,2012,2013"]
Sweden | 4.5% | 6.9% |
Norway | 1.9% | 2.0% |
Finland | 11.0% | 13.2% |
Iceland | 11.0% | 16.2% |
Denmark | 2.9% | 2.11% |