Hello,
as far as I know, error bars can only be applied to one series at a time. There is no ribbon or dialog command to create error bars for more than one series in one swoop. The only way to automate error bar creation is with VBA.
The following code could be adjusted to your needs. Here a line chart has seven series. Each series has three data points. A table in the workbook has the error bar values for each data point. A loop sets the number of the series and the range of the error bar values and then applies the error bars with the custom values pointing to these ranges.
Sub setErrorBars()
Dim TheSeries As Integer
Dim i As Integer
Dim ErrorValue As Range
Dim ErrorRange As Range
TheSeries = 7 ' how many series in the chart
' the first set of error bar custom values is in this range
Set ErrorRange = ThisWorkbook.Sheets("Sheet1").Range("B12:B14")
ActiveSheet.ChartObjects("Chart 1").Activate
For i = 1 To TheSeries
Set ErrorValue = ErrorRange.Offset(0, i - 1) ' offset moves the range to the right
With ActiveChart.SeriesCollection(i)
.HasErrorBars = True
.ErrorBar Direction:=xlY, _
Include:=xlErrorBarIncludeBoth, Type:=xlErrorBarTypeCustom, _
Amount:=ErrorValue, MinusValues:=ErrorValue
End With
Next i
End Sub