Sub UserFormShow()
UserForm1.Show
End Sub
Sub CreateProcessChart(y, m, yy, mm, suppKey)
Sheets("工程").Cells(1, 1).Value = "製作先"
Sheets("工程").Cells(1, 2).Value = "工番"
Sheets("工程").Cells(1, 3).Value = "型式"
Sheets("工程").Cells(1, 4).Value = "数量"
Sheets("工程").Cells(1, 5).Value = "客先"
ymd = DateAdd("m", -1, CDate(y & "/" & m & "/21"))
ymdymd = CDate(yy & "/" & mm & "/20")
c = 6
Do While CDate(ymd) <= CDate(ymdymd)
Sheets("工程").Cells(1, c).Value = ymd
ymd = DateAdd("d", 1, ymd)
c = c + 1
Loop
i = 2
For r = 6 To Sheets("入力").UsedRange.Rows.Count
flg = True
If suppKey <> "全て出力" And suppKey <> Sheets("入力").Range("D" & r).Value Then flg = False
If Sheets("入力").Range("AK" & r).Value = "有" And flg = True Then
Sheets("工程").Range("A" & i).Value = Sheets("入力").Range("D" & r).Value
Sheets("工程").Range("B" & i).Value = Sheets("入力").Range("H" & r).Value
Sheets("工程").Range("C" & i).Value = Sheets("入力").Range("J" & r).Value
Sheets("工程").Range("D" & i).Value = Sheets("入力").Range("M" & r).Value
Sheets("工程").Range("E" & i).Value = Sheets("入力").Range("N" & r).Value
rangeAddress = Split("E,F,R,T,U", ",")
chartText = Split("完成期日,本納期,出図日,製缶検査,完成検査", ",")
ChartColor = Split("&HCC99FF,&HCC99FF,&H99CCFF,&H99CCFF,&H99CCFF", ",")
For a = 0 To 4
If IsDate(Sheets("入力").Range(rangeAddress(a) & r).Value) = True Then
c = 6
Do While Sheets("工程").Cells(1, c).Value <> ""
If CDate(Sheets("工程").Cells(1, c).Value) = CDate(Sheets("入力").Range(rangeAddress(a) & r).Value) Then
Sheets("工程").Cells(i, c).Value = chartText(a)
Sheets("工程").Cells(i, c).Interior.Color = ChartColor(a)
End If
c = c + 1
Loop
End If
Next a
fromRangeAddress = Split("AM,AP,AS,AV", ",")
toRangeAddress = Split("AN,AQ,AT,AW", ",")
chartTextAddress = Split("AL,AO,AR,AU", ",")
ChartColor = Split("&H663399,&HFF6633,&H00CC99,&H00CCFF", ",")
For a = 0 To 3
fromDate = Sheets("入力").Range(fromRangeAddress(a) & r).Value
toDate = Sheets("入力").Range(toRangeAddress(a) & r).Value
chartText = Sheets("入力").Range(chartTextAddress(a) & r).Value
textFlag = False
If IsDate(fromDate) = True Then
If IsDate(toDate) = False Then toDate = fromDate
c = 6
Do While Sheets("工程").Cells(1, c).Value <> ""
If CDate(Sheets("工程").Cells(1, c).Value) >= CDate(fromDate) And _
CDate(Sheets("工程").Cells(1, c).Value) <= CDate(toDate) Then
If textFlag = False Then
Sheets("工程").Cells(i, c).Value = Sheets("工程").Cells(i, c).Value & " " & chartText
textFlag = True
End If
Sheets("工程").Cells(i, c).Interior.Color = ChartColor(a)
End If
c = c + 1
Loop
End If
Next a
i = i + 1
End If
Next r
Sheets("工程").Rows(1).NumberFormatLocal = "dd"
Sheets("工程").Rows(1).ShrinkToFit = True
Sheets("工程").Rows(1).HorizontalAlignment = xlCenter
Sheets("工程").Columns.AutoFit
c = 6
Do While Sheets("工程").Cells(1, c).Value <> ""
Sheets("工程").Columns(c).ColumnWidth = 3.4
If c = 6 Or Day(Sheets("工程").Cells(1, c).Value) = 1 Then
Sheets("工程").Cells(1, c).NumberFormatLocal = "mm/dd"
End If
If Weekday(Sheets("工程").Cells(1, c).Value) = 1 Then Sheets("工程").Cells(1, c).Font.Color = RGB(255, 0, 0)
c = c + 1
Loop
Sheets("工程").UsedRange.Borders.LineStyle = True
Sheets("工程").Cells(2, 1).Select
ActiveWindow.FreezePanes = True
End Sub