Write the ranges in the desired position from MS-Access to MS-Word

arslan_basit2002

New Member
Joined
Jul 27, 2018
Messages
1
Hello Everybody,

I want to write a string in Microsoft Word always in the same position but unfortunately i am not able to do it. I tried first something like Dim PatName As String *70 but for the first loop works but in the second loop the position changes.

HTML:
        Dim PatName                            As Variant
        Dim RechnNr                            As String * 70

        For iSchleife = 1 To 5
            
            Set objRange = wrdApp.ActiveDocument.Paragraphs(6).Range 
            objRange.Select
            
            PatName = Space(65 - Len(Trim(arr_PatName(iSchleifex + iSchleife))))
            RechnNr = arr_RechNrKomplett(iSchleifex + iSchleife)
          'For first loop works fine but after that the format gets changes
            objRange.InsertAfter vbNewLine & Trim(arr_Name(iSchleifex + iSchleife)) & Space(65 - Len(Trim(arr_Name(iSchleifex + iSchleife)))) &  arr_RechNrKomplett(iSchleifex + iSchleife)
                                    
            'The spaces are not in the right places i want that after Name there should be the same Name length.
             'Actually i want to do something like this, but it's not working
                         objRange.InsertAfter vbNewLine & Trim(arr_Name(iSchleifex + iSchleife))
                         wrdDoc.Paragraphs(8).objRange.Paragraphs.ParagraphFormat.TabStops(CentimetersToPoints(7.25)).Position CentimetersToPoints(7.25)
                         objRange.InsertAfter. arr_RechNrKomplett(iSchleifex + iSchleife) 
            
        Next iSchleife

For a fast reply i will be very thankfull.
Many thanks


Best regards
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"

Forum statistics

Threads
1,223,236
Messages
6,170,915
Members
452,366
Latest member
TePunaBloke

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