root– Author –
-
GoogleAppsScript
GoogleAppsScript( GAS )で特定行の行数を取得
特定行の値を取得 function myFunction() { var spsheet = SpreadsheetApp.getActiveSpreadsheet(); var sheet = spsheet.getActiveSheet(); var sheet_range = sheet.g... -
GoogleAppsScript
GoogleAppsScript( GAS )で、スプレッドシートの値をfor文で取得
getLastRow() function myFunction() { var spsheet = SpreadsheetApp.getActiveSpreadsheet(); var sheet = spsheet.getActiveSheet(); var lastRow = sheet.getLastRo... -
GoogleAppsScript
GoogleAppsScript( GAS )で、スプレッドシートのデータを全て取得してみる
複数のセルを取得する為のgetRange() 最初に、読み取りたいシートを取得。 var spsheet = SpreadsheetApp.getActiveSpreadsheet(); var sheet = spsheet.getActiveSheet... -
GoogleAppsScript
GoogleAppsScript( GAS )でスプレッドシートを取得、値を取得、書き込みしてみよう!
スプレッドシートを作成 今回は「ID」「FirstName」「LastName」の3項目を5列ぶん用意いたしました! gasのファイルを作成(作成方法は2種類ある) スプレッドシートか... -
Flutter / Dart
Flutter TextField()がキーボードに隠れてしまう。
Scaffoldに 「resizeToAvoidBottomInset: true」を設定 @override Widget build(BuildContext context) { return Scaffold( resizeToAvoidBottomInset: true, appBar: A... -
スプレッドシート
スプレッドシート共有の仕方
ファイルごとの共有 特定の人にだけ共有 google driveを開き、共有したいフォルダ上で右クリックします。 すると、上の画像の様に「共有」という項目があるのでクリック... -
AppSheet
AppSheet で IDにUniqueなKeyをセット!!
NumberでKeyをセット スプレッドシートで作成 ColumnsでinitialValueをセット ColumnsにあるINITIAL VALUEにUNIQUEID()と記入。 確認 Textの場合 スプレッドシート 同じ... -
Flutter / Dart
Dart Listで使えるメソッド集
dartPadで動きを確認して見てください! method for() var people = ['人造人間1号', '人造人間12号', '人造人間31号']; for(var person in people){ print(pe... -
Flutter / Dart
Flutter BoxDecoration でグラデーション
class MyWidget extends StatelessWidget { @override Widget build(BuildContext context) { return Container( width: MediaQuery.of(context).size.width, decoratio... -
Python
Python Tutorial Excelから必要な値を取得!Colaboratory & GoogleDrive
1日3分で学ぶPythonの 1 〜 11 まで完了してたらできるはず。。 設定 商品名と売り上げ金額が入ったシートから、700,000円以上の売り上げの商品と金額を取り出し、新... -
Python
1日3分で学ぶ Python入門⑪ Excelファイルの操作
GoogleDrive Colaboratory を使用して、Excelファイルを操作します。 必要なモジュールをインポート import openpyxl Driveにアップロードしたファイルを読み込み Drive... -
Python
1日3分で学ぶ Python入門⑩ while文 で繰り返す
0 から10まで出力してみる count = 0 while count <= 10: print(count) count += 1 # 出力結果 # 0 1 2 3 4 5 6 7 8 9 10 解説 while のあとの 「count <= 10」...