ピボット テーブルを作成してから、電子メールに埋め込むための ahk のピボット チャートを作成しようとしています。私は初心者なので、コードの品質を許してください。ピボット テーブルを正しく設定するのに問題があり、一生グラフを表示できません。私が取り組んできた投稿への参照と、この投稿の最後に望ましい最終結果を含めました.
私のデータは 2 つの列で、時間のヘッダー (なくてもよい) と警告があります。時間の経過に伴う警告の量と種類を示すグラフを作成できるようにしたいと考えています。そこから、オブジェクトのハンドルを取得し、それを Outlook の電子メールに入れるか、単にコピーして貼り付けるだけでもうまくいきます。これを行う方法を教えてください。私はとても近いと思います。
編集 私は以下のコードを更新しました。チャートが作成されるポイント(ずさんな確信)に達しました。欠けているのは、ピボットテーブルの凡例フィールドに「警告」を追加し、軸(カテゴリ)を「から」に変更することだけですtime" を "hours" に変更すると、個々のタイム スタンプではなく、時間ごとに警告がグループ化されます。手動で行うと、必要な結果が得られるようです。その後、グラフのタイトルを削除してから、グラフをオブジェクトに割り当てて埋め込むか、クリップボードに取得します。
助けてくれてありがとう。
f1::Reload
Pause::Pause
f2::ListVars
Pause
!`::
function()
return
function()
{
when:=[]
what:=[]
Nothing:="Nothing to report, have a wonderful day."
TMP:=""
RMRKS:=""
Date1:=""
Date2:=""
EMOUT:=""
EMIN := Clipboard ; Email text var
Loop, Parse, EMIN,`n,`r ; parse email by line
{
tmp := StrSplit(A_LoopField, ";") ; for each line break it into chunks by ";"
rmrks := tmp.6 ; Warn code is in 6th index
If (InStr(rmrks, "Warning")) ; If this is a warning line
{
date1:=StrSplit(tmp.1, "/") ; date/time is in DD/MM/YYYY , split it up by "/"
date2= % date1.2 "/" date1.1 "/" date1.3 ; Rearrange the date into MM/DD/YYYY
EMOUT .= date2 "`t" rmrks "`n" ; Push into VAR "11/24/2016 13:40:45 WARNING MESSAGE"
}
}
EMOUT := StrReplace(EMOUT,"""") ; Replace all of the quotes in the var with Null
Loop, Parse, EMOUT,`n,`r ; Split output by line and then...
{
tmp := StrSplit(A_LoopField, ["`t"]) ; split lines by tab
when.insert(tmp.1) ; insert date/time stamp into "when" array
what.insert(tmp.2) ; insert Warn Code into "what" array
}
if (emout!="") ; If there was stuff to put into array
{
XL := ComObjCreate("Excel.Application") ; create an excel object
wbk := xl.Workbooks.Add ; add a workbook to the object
Xl.Visible := True ; make it visible
XL.Range("A1").Value := "Time" ;Create Time header
XL.Range("A:A").columnwidth := "20"
XL.Range("B:B").columnwidth := "56.86"
XL.Range("B1").Value := "Warning" ; Create Warning Header
for index in when
Xl.Range("A" . index+1).Value := when[index] ;add everything in the "when" array
for index in what
Xl.Range("B" . index+1).Value := what[index] ;add everything in the "what" array
rng := xl.Sheets(1).UsedRange.address
trgt := xl.Sheets(1).range("c1")
pvt := xl.ActiveWorkbook.PivotCaches.Create(xlDatabase:=1, rng, xlPivotTableVersion12:=3).CreatePivotTable(trgt, "PivotTable1", ,xlPivotTableVersion12:=3)
pvt.PivotFields("warning").Orientation := 1
pvt.PivotFields("warning").Position := 1
pvt.PivotFields("time").Orientation := 1
pvt.PivotFields("time").Position := 2
pvt.AddDataField(pvt.PivotFields("Warning"), "Count of Warning", -4112)
Sheet := xl.Sheets(1)
Sheet.Shapes.AddChart.Select
wbk.ShowPivotChartActiveFields := false
xl.ActiveChart.ChartType := 51
xl.ActiveChart.PivotLayout.PivotTable.PivotFields("Warning").Orientation = xlColumnField
xl.ActiveChart.PivotLayout.PivotTable.PivotFields("Warning").Position = 1
return
}
if (emout="")
Msgbox, %Nothing%
Reload
}
私が取り組んでいるソースフォーラムの投稿は
autohotkey ドット com/board/topic/149544-table-pivot-vs-table-pivot-chart-com
と
autohotkey ドットコム/ボード/トピック/125719-com-excel-pivot-table
Outlookの電子メールに埋め込むために探している最終結果:
サンプル入力: