So I made this code under under a couple assumptions. Your Excel rows are formatted (X,Y,Z) and they are in mm. Corresponding rows in both excel file are a point pair for the axis. I have have the Manifold Points on the Front Plane and the Motor Points on the Back Plane.
It only half works at the moment, the Motor Points seem to be placed correctly, but the Manifold points are off. I'm not sure what could be causing this, but I will keep looking into it


Dim oDoc As Document = ThisDoc.Document
Dim oDef As PartComponentDefinition = oDoc.ComponentDefinition
For i = 1 To 102
Dim oFrontSketch As PlanarSketch = oDef.Sketches.Item("Front_Sketch")
Dim oManiPoint2d As Point2d = ThisApplication.TransientGeometry.CreatePoint2d
oManiPoint2d.X = GoExcel.CellValue("Injector_Manifold_Hole_Pattern.xlsx", "Sayfa1", "A" & i)/10
oManiPoint2d.Y = GoExcel.CellValue("Injector_Manifold_Hole_Pattern.xlsx", "Sayfa1", "B" & i)/10
Dim oManiSketchPoint As SketchPoint = oFrontSketch.SketchPoints.Add(oManiPoint2d)
Dim oBackSketch As PlanarSketch = oDef.Sketches.Item("Back_Sketch")
Dim oMotPoint2d As Point2d = ThisApplication.TransientGeometry.CreatePoint2d
oMotPoint2d.X = GoExcel.CellValue("Injector_Motor_Hole_Pattern.xlsx", "Sayfa1", "A" & i)/10
oMotPoint2d.Y = GoExcel.CellValue("Injector_Motor_Hole_Pattern.xlsx", "Sayfa1", "B" & i)/10
Dim oMotSketchPoint As SketchPoint = oBackSketch.SketchPoints.Add(oMotPoint2d)
Dim oAxis As WorkAxis = oDef.WorkAxes.AddByTwoPoints(oManiSketchPoint, oMotSketchPoint)
Dim oManiPoint As WorkPoint = oDef.WorkPoints.AddByPoint(oManiSketchPoint)
Dim oHoleDef As PointHolePlacementDefinition = oDef.Features.HoleFeatures.CreatePointPlacementDefinition(oManiPoint,oAxis)
oDef.Features.HoleFeatures.AddDrilledByThroughAllExtent(oHoleDef,.15,PartFeatureExtentDirectionEnum.kSymmetricExtentDirection)
Next