facebook twitter hatena line email

「Google/スプレットシート/関数/判定」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(どれかを含む時)
(祝日判定)
行16: 行16:
  
 
参考:https://liquidjumper.com/google-sheets/googlespreadsheet_holiday_judgment
 
参考:https://liquidjumper.com/google-sheets/googlespreadsheet_holiday_judgment
 +
 +
==OR条件==
 +
=if(OR(A2>10,B3>80),"ok",ng")
 +
 +
==And条件==
 +
=if(AND(A2>10,B3>80),"ok",ng")

2023年1月24日 (火) 22:58時点における版

通常判定

=IF(B7=1,"","1:00")

どれかを含む時

土日祝のどれかを含む時

=IF(REGEXMATCH(B7,"[土日祝]"),"","1:00")

正規表現

=REGEXMATCH(F12,"(abc$|def|^ghk)")

祝日判定

シート(shuku)を作成し、右上に以下を入れる

=IMPORTDATA("https://www8.cao.go.jp/chosei/shukujitsu/syukujitsu.csv")

日付の値をD2に入れた場合、以下を別セルに入れると、そこでtrue,false判定してくれる。

=countif(shuku!A:A,D2)=1

参考:https://liquidjumper.com/google-sheets/googlespreadsheet_holiday_judgment

OR条件

=if(OR(A2>10,B3>80),"ok",ng")

And条件

=if(AND(A2>10,B3>80),"ok",ng")