4

Python を使用して Google スプレッドシートを更新しています。スプレッドシート用の Google Python ライブラリを使用すると、InsertRow API を使用して行をスプレッドシートに挿入できます。

次に例を示します。

gd_client.InsertRow(myDict, spreadSheetKey, workSheetKey)

myDictionary は挿入する辞書、spreadsheetKey はスプレッドシートのキー、worksheetKey はワークシートのキーです。ただし、スプレッドシートの途中にある特定の行に挿入したいと考えています。この API は最後にのみ挿入します。

これを行う方法があれば、誰でも知っていますか?

ありがとう。

4

2 に答える 2

4

簡単な方法は、同じスプレッドシートに2 つのシートを含めることです。1 つは外部から挿入されたままの生データで、2 つ目はその生データに基づいて計算されたもの (並べ替え、関数など) です。

たとえば、データを 2 番目の列で並べ替えたい場合は、2 番目のシートに次のように配置できます。

=EXPAND(SORT(Sheet1!A:D,2,1))

この分離は、外部からデータを更新する場合にも適しています。計算された列をデータ行に追加するなど、データに対して行う可能性のある操作と競合します。

于 2012-02-06T08:33:40.267 に答える
1

API/OAuth を介して Google スプレッドシートの途中に* 行を* 挿入する方法 ..... 難しい方法です。(これを API に追加する機能要求があるため、簡単な方法はないと思います)。

          Pattern cellRefPattern = Pattern.compile("R(\\[?)([-0-9]+)\\]?C(\\[?)([-0-9]*)\\]?");
              worksheet.setRowCount(worksheet.getRowCount()+1);
              worksheet.update();
              CellFeed batchRequest = new CellFeed();
              for (AppCell cellAddr : cellAddresses.values()) {

                  // create a copy of the cell to replace
                  CellEntry batchEntry = new CellEntry(cellAddr.row, cellAddr.col, cellAddr.reference);

                  String updateReference = cellAddr.inputValue; 

                  if(updateReference.startsWith("=")) {
                      String removeReferenceBug = updateReference.replace( (CharSequence) "C:R", (CharSequence) "C[0]:R");
                      Matcher referenceMatcher = cellRefPattern.matcher(removeReferenceBug);
                      StringBuffer restultBuffer = new StringBuffer();
                      while (referenceMatcher.find()) {
                          try {
                              if(referenceMatcher.group(1).equals("[")) {
                                  int rowOffset = Integer.parseInt(referenceMatcher.group(2));
                                  int topRowOfSpan;
                                  int bottomRowOfSpan;                                
                                  int incSize = 1;
                                  if(rowOffset > 0) {
                                      topRowOfSpan = cellAddr.row;
                                      bottomRowOfSpan = cellAddr.row + rowOffset;
                                  } else {
                                      topRowOfSpan = cellAddr.row + rowOffset;
                                      bottomRowOfSpan = cellAddr.row ;      
                                      incSize = -1;
                                  }                               
                                  //System.out.println("move down: reference:"+cellAddr.reference+" topRowOfSpan:"+topRowOfSpan+
                                    //    " insertLocationRow:"+insertLocationRow+" bottomRowOfSpan:"+bottomRowOfSpan);
                                  if(topRowOfSpan <= insertLocationRow && bottomRowOfSpan > insertLocationRow) rowOffset += incSize;
                                  if(referenceMatcher.group(3).equals("[")) {
                                      referenceMatcher.appendReplacement(restultBuffer, "R["+rowOffset+"]C["+referenceMatcher.group(4)+"]");                                      

                                  } else {
                                      int colOffset = 0;                                          
                                      String col = referenceMatcher.group(4);                                         
                                      if(col != null && "".equals(col) == false) {
                                          colOffset = Integer.parseInt(col) - cellAddr.col;
                                      }                                       
                                      referenceMatcher.appendReplacement(restultBuffer, "R["+rowOffset+"]C["+colOffset+"]");                                                                              
                                  }                                   
                              } else {
                                  int absoluteRow = Integer.parseInt(referenceMatcher.group(2));
                                  if(absoluteRow >= insertLocationRow ) absoluteRow ++;
                                  if(referenceMatcher.group(3).equals("[")) {
                                      referenceMatcher.appendReplacement(restultBuffer, "R"+absoluteRow+"C["+referenceMatcher.group(4)+"]");                                                                                                              
                                  } else {
                                      referenceMatcher.appendReplacement(restultBuffer, "R"+absoluteRow+"C"+referenceMatcher.group(4));                                                                                                                                                   
                                  }

                              }
                          } catch(NumberFormatException nfe) {}
                      }
                      referenceMatcher.appendTail(restultBuffer);
                      updateReference = restultBuffer.toString();                                                                         

                  }


                  batchEntry.setId(String.format("%s/%s", worksheet.getCellFeedUrl().toString(), cellAddr.reference));              
                  batchEntry.changeInputValueLocal(updateReference);
                  BatchUtils.setBatchId(batchEntry, cellAddr.reference);
                  BatchUtils.setBatchOperationType(batchEntry, BatchOperationType.UPDATE);

                  // add the copy to the batch list
                  batchRequest.getEntries().add(batchEntry);
              }


              // Submit the update
              Link batchLink = cellFeed.getLink(Link.Rel.FEED_BATCH, Link.Type.ATOM);
              service.setHeader("If-Match", "*");
              CellFeed batchResponse = service.batch(new URL(batchLink.getHref()), batchRequest);
              service.setHeader("If-Match", null);

https://developers.google.com/google-apps/spreadsheets/#updating_multiple_cells_with_a_batch_requestの修正版

問題: 数式内の文字列をチェックしない

AppCell の内容: 行、列、参照

于 2013-01-22T05:58:32.903 に答える