400 Errror.

Status
Not open for further replies.

boomshaka

New Member
Joined
Jun 28, 2018
Messages
10
I am getting 400 error. I was able to run the program once and it worked. However, I get the error now.
Data:

[TABLE="width: 128"]
<colgroup><col width="64" style="width:48pt" span="2"> </colgroup><tbody>[TR]
[TD="width: 128, bgcolor: transparent, colspan: 2"]Original List[/TD]
[/TR]
[TR]
[TD="width: 64, bgcolor: transparent"]Planned [/TD]
[TD="width: 64, bgcolor: transparent"]PO1[/TD]
[/TR]
[TR]
[TD="width: 64, bgcolor: transparent"]Break End [/TD]
[TD="width: 64, bgcolor: transparent"]PO2 [/TD]
[/TR]
[TR]
[TD="width: 64, bgcolor: transparent"]Planned [/TD]
[TD="width: 64, bgcolor: transparent"]PO3[/TD]
[/TR]
[TR]
[TD="width: 64, bgcolor: transparent"]Break End [/TD]
[TD="width: 64, bgcolor: transparent"]PO4[/TD]
[/TR]
[TR]
[TD="width: 64, bgcolor: transparent"]Break End [/TD]
[TD="width: 64, bgcolor: transparent"]PO5[/TD]
[/TR]
[TR]
[TD="width: 64, bgcolor: transparent"]Planned [/TD]
[TD="width: 64, bgcolor: transparent"]PO6[/TD]
[/TR]
[TR]
[TD="width: 64, bgcolor: transparent"]Break End [/TD]
[TD="width: 64, bgcolor: transparent"]PO7[/TD]
[/TR]
[TR]
[TD="width: 64, bgcolor: transparent"]Planned [/TD]
[TD="width: 64, bgcolor: transparent"]PO8[/TD]
[/TR]
[TR]
[TD="width: 64, bgcolor: transparent"]Break End [/TD]
[TD="width: 64, bgcolor: transparent"]PO9[/TD]
[/TR]
[TR]
[TD="width: 64, bgcolor: transparent"]Planned [/TD]
[TD="width: 64, bgcolor: transparent"]PO10[/TD]
[/TR]
[TR]
[TD="width: 64, bgcolor: transparent"]Break End [/TD]
[TD="width: 64, bgcolor: transparent"]PO11[/TD]
[/TR]
[TR]
[TD="width: 64, bgcolor: transparent"]Planned [/TD]
[TD="width: 64, bgcolor: transparent"]PO12[/TD]
[/TR]
[TR]
[TD="width: 64, bgcolor: transparent"]Planned [/TD]
[TD="width: 64, bgcolor: transparent"]PO13[/TD]
[/TR]
[TR]
[TD="width: 64, bgcolor: transparent"]Planned [/TD]
[TD="width: 64, bgcolor: transparent"]PO14[/TD]
[/TR]
[TR]
[TD="width: 64, bgcolor: transparent"]Break End [/TD]
[TD="width: 64, bgcolor: transparent"]PO15[/TD]
[/TR]
[TR]
[TD="width: 64, bgcolor: transparent"]Planned [/TD]
[TD="width: 64, bgcolor: transparent"]PO16[/TD]
[/TR]
[TR]
[TD="width: 64, bgcolor: transparent"]Break End [/TD]
[TD="width: 64, bgcolor: transparent"]PO17[/TD]
[/TR]
</tbody>[/TABLE]



VBA:


Sub Make2Lists()
Dim Ar As Areas
Dim Rng As Range
Dim i As Long, j As Long
Dim Ary As Variant

j = 4
Ary = Array("Planned", "Break Even")
For i = 0 To UBound(Ary)
With Range("A:A")
.Replace Ary(i), True, xlWhole, , False, , False, False
Set Ar = .SpecialCells(xlConstants, xlLogical).Areas
.Replace True, Ary(i), xlWhole, , False, , False, False
End With
For Each Rng In Ar
Rng.Resize(, 2).Copy Cells(Rows.Count, j).End(xlUp).Offset(1)
Next Rng
j = j + 3
Next i
End Sub
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
Status
Not open for further replies.

Forum statistics

Threads
1,223,895
Messages
6,175,257
Members
452,625
Latest member
saadat28

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top