diff --git a/module/src/main/java/pl/clarin/converter/Converter.java b/module/src/main/java/pl/clarin/converter/Converter.java
index bf7ee2f1d43f52d359c1e39e5481fd9a7087da13..b9f0aa03ede920bfb0a31c82be457f4a1c7513e1 100644
--- a/module/src/main/java/pl/clarin/converter/Converter.java
+++ b/module/src/main/java/pl/clarin/converter/Converter.java
@@ -43,7 +43,6 @@ public class Converter extends Worker {
             new TopicModel().process(fileIn, fileOut, options);
         } else if (type.equals("ccl2liwc")) {
             new Ccl2LIWC().process(fileIn, fileOut, options);
-
         } else if (type.equals("ccl2xlsx")) {
             new CCLCzasownik().process(fileIn, fileOut, options);
         } else if (type.equals("ccl2verbs")) {
@@ -60,32 +59,24 @@ public class Converter extends Worker {
             new Ccl2LocJSON().process(fileIn, fileOut, options);
         } else if (type.equals("txt2list")) {
             new Txt2List().process(fileIn, fileOut, options);
-        /*
+            /*
         } else if (type.equals("ccls2dist")) {
             new Ccls2Dist(connection, "lex_").process(fileIn, fileOut, options);
 
         } else if (type.equals("ccls2worddist")) {
             new Ccls2WordDist(connection, "lex_").process(fileIn, fileOut, options);
-        */    
+             */
         } else if (type.equals("ccl2vec")) {
             new Ccl2Doc2Vec(connection, "lex_").process(fileIn, fileOut, options);
         } else if (type.equals("ccl2stat")) {
             new Ccl2Stats().process(fileIn, fileOut, options);
-        }
-        
-         else if (type.equals("fog")) {
+        } else if (type.equals("fog")) {
             new Smog2MSXLSX().process(fileIn, fileOut, options);
-        }
- 
-        else if (type.equals("json2xlsx")){
+        } else if (type.equals("json2xlsx")) {
             new JSON2XLSX().process(fileIn, fileOut, options);
-        }
-         
-        else {
+        } else {
             new Ccl2Loc().process(fileIn, fileOut, options);
         }
-        
-        
 
     }
 
diff --git a/module/src/main/java/pl/clarin/converter/JSON2XLSX.java b/module/src/main/java/pl/clarin/converter/JSON2XLSX.java
index b6e8a09c7452607afcd7483a20d47959febee7e6..ca6d6763152b65c17f37809f69686704a467f216 100644
--- a/module/src/main/java/pl/clarin/converter/JSON2XLSX.java
+++ b/module/src/main/java/pl/clarin/converter/JSON2XLSX.java
@@ -33,7 +33,7 @@ public class JSON2XLSX {
            { keys.put(key, new Integer(key_id++));
            }
             double value = json.getDouble(key);
-            row.createCell(column + key_id).setCellValue(value);
+            row.createCell(column + keys.get(key)).setCellValue(value);
         }
         
     }