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?

More than 3 years have passed since last update.

初心者向けLookerの表内に日時情報を表示する方法

Last updated at Posted at 2021-10-23

あんまり需要ないかもですが、Lookerの表内に数字以外の情報を表示する手順のメモです。

今回のゴール

lookerの表内に日時情報を表示する方法1.png

上記のように表内に日時を表示する

対応手順

1)日付情報のLookML設定

measure: create_datetime {
  type: max
  sql:
      FORMAT_TIMESTAMP('%Y%m%d%H%M%S', TIMESTAMP(${TABLE}.create_datetime))
     ;;
}

表内に表示する為に、日付情報をmeasureで定義追加する

2)Lookerでの初期表示

lookerの表内に日時情報を表示する方法2.png

LookMLでmeasure定義した結果、日時情報が数値として表示されてしまう。

3)設定の変更

lookerの表内に日時情報を表示する方法5.png

  • LookerのVisualizationの右端にある設定ボタンをクリック
  • Seriesタブを選択
  • 表示を変更したい項目(ここではcreate_datetime)を選択して、FormatからCustomを選択する
  • フォーマットに00"-"00"-"00" "00":"00":"00と入れる
  • 表内の表示が日時情報の表示に変更される
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?