3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

ShowColumns,DropColumns,AddColumnsの委任について

Posted at

タイトルの3つの関数ですが普通にコードを書いていると委任警告が出ません。
しかし、実際には委任されてないので工夫が必要です。

例えば

Filter(ShowColumns(DB,Column1,Column2),Column1=○○)

とすると委任されないので
上限行引っ張ってきた上でFilterされてしまう為、正しい結果が表示されません。

そこはうまく工夫して(Filterで上限行以下となる前提条件の下)

ShowColumns(Filter(DB,Columns1=○○),Column1,column2)

とすると正しい結果が得られます。
(内側から処理が進むため)

DropColumnsやAddColumnsも同様

3
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?