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?

簡単なガントチャートの作り方紹介

Posted at

皆さん、こんにちは。
今回はプロジェクトスケジュール管理するためによく使われるガントチャートの作り方を紹介したいと思います。
ステップは以下の通りになります。

1. 事前に準備したExcelファイルを読み込むimage.png   

2.シートを右枠内にドラッグ&ドロップして、シート1に移動するimage.png 

3.フェーズを行に入れて、手動で並べ替えする!image.png

4.並べたい項目を行に入れるimage.png  
(開始日及び終了日は右クリックしたまま行に入れる)image.png

5.開始日を右クリックしたままドラッグ&ドロップで列に入れるimage.png

      
    
6.計算式で期間を計算し、マークの“サイズ”に入れ、サイズを調整する
  DATEDIFF('day',[開始日],[終了日])image.png
   
7.遅延フラグを作成し、“色”に入れる
  計算式:
  IF [終了日]<TODAY() and [ステータス]!='完了' then "遅延"
  ELSEIF [開始日]<TODAY() and [ステータス]='未着手' then "遅延"
  ELSE [ステータス]
  ENDimage.png

8.現在はどの時点なのかを表示するため、リファレンスラインを追加する。
  ①Todayの計算フィールドを作成する
  TODAY()
  ②Todayのフィールドからパラメーターを作成image.png      
  ③Todayのパラメーターをリファレンスラインに入れるimage.pngimage.png       
9.完成イメージimage.png
Link:https://public.tableau.com/app/profile/.43266508/viz/_17554772773620/1
 

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?