|
K13、K20、K27・・・、と等間隔で「あああ」と入力されている行数を取得
して下記1.2.のようにしたいのですが、1.にてK20以降がうまく取得できません。
お手数ですがご教授の程よろしくお願いいたします。
1.ttlrow2に行数を取得
2.にてdict(key)の値をセット
3.TからNTの範囲で、ttlrow2の行に罫線をひく
=========================
'1.
maxrow2 = sh1.Cells(Rows.Count, "K").End(xlDown).row
For row2 = 7 To maxrow2
If sh1.Cells(row2, "K").Value = "あああ" Then
ttlrow2 = row2
Exit For
End If
Next
If ttlrow2 = 0 Then
MsgBox ("あああ行がありません" & vbLf & "処理を打ち切ります")
Exit Sub
End If
'2.
sh1.Cells(ttlrow2, tcol).Value = dicT(key)
'3.
sh1.Cells(ttlrow2, tcol).Borders(xlEdgeBottom).LineStyle = xlThick
=========================
|
|