0
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?

Power Query へそのゴマAdvent Calendar 2024

Day 20

Power Query へそのゴマ 100本ノック 解答 10

Last updated at Posted at 2024-12-29

91. コード補完問題
問題: "Sales"を昇順にソート

{"Amount", ___}

解答: Order.Ascending

解説:
昇順はOrder.Ascending


92. 5択問題
問題: null値チェック
A.= null B.== null C.equals null D.<> null E.is null

解答: A. = null

解説:
M言語はnull判定に= null<> nullを直接使えます。
問題文「null値のチェックをする場合」→最も基本的なのは= nullです。


93. コード補完問題
問題: "Sales"列の最大値

List.Max(Table.Column(Source, "___"))

解答: Sales

解説:
Table.Column(Source, "Sales")でSales列をリスト化、List.Maxで最大値取得。


94. 5択問題
問題: Date.EndOfMonth(#date(2020,1,15))は?
2020年1月の最終日は31日

解答: B. #date(2020,1,31)

解説:
EndOfMonthはその月の最終日付を返します。


95. コード補完問題
問題: "Name"列の前後空白除去

Text.Trim([___])

解答: Name

解説:
Text.Trim([Name])で前後の空白を取り除きます。


96. 5択問題
問題: Duration.Days(#duration(2,0,0,0))
#duration(2,0,0,0)は2日間

解答: B. 2

解説:
Duration.Daysはduration値の日数部分を返し、2日間なので2。


97. コード補完問題
問題: "Value"を小数点以下2桁に丸める

Number.Round([Value], ___)

解答: 2

解説:
Number.Round(number, digits)で指定桁数に丸め、2桁にしたい場合は2


98. 5択問題
問題: Text.Reverse("ABC")は?
A."CBA" B."ABC" ...

解答: A. "CBA"

解説:
Text.Reverseは文字列を逆順にします。


99. コード補完問題
問題: "Sales"合計結果列の型指定

type ___

解答: number

解説:
集計結果をnumber型に指定するため type number を使用します。


100. 5択問題
問題: 関数定義構文
A. function(args) => expression

解答: A. function(args) => expression

解説:
M言語で関数は function (引数) => 式 の形式で定義します。

0
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
0
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?