I share this blog with my thoughts and creations from my daily programming, knowledge, and technology updates.
Wednesday, October 16, 2019
スプレッドシートのFILTER関数を使ってみる
試行1
「A列を対象にして、A列が空白以外」という条件でフィルタをかけてみる
=filter(A:A,A:A<>"")
=filter(A列を対象にして,A列が空白以外)
試行2
「A列を対象にして、A列がF1に一致する」という条件でフィルタをかけてみる
=filter(A:A,(A:A = F1))
=filter(A列を対象にして,(A列がF1と一致する))
試行3
「C列を対象にして、A列がF1に一致する」という条件でフィルタをかけてみる
=filter(C2:C,(A2:A = F1))
=filter(C列を対象にして,(A列がF1に一致する))
A列が2019/01/04に一致するC列の値は、2019/01/06
参考
FILTER
https://support.google.com/docs/answer/3093197?hl=ja
Latest post
Extracting data from Google Sheets with regular expressions
Introduction Regular expressions are a powerful tool that can be used to extract data from text. In Google Sheets, regular expressions ca...