Horizontal Alignment via Text String gives Run-time error '1004'

OilEconomist

Active Member
Joined
Dec 26, 2016
Messages
421
Office Version
  1. 2019
Platform
  1. Windows
Thanks in advance and Season Greetings!

How to set alignment through a text string and avoid getting the error "Run-time error '1004': Application-defined or object-defined error"?

Code is as follows:

VBA Code:
Option Explicit

Sub AlignmentTestDoesNotWork()

    Dim HzAlng As String
    
    HzAlng = "xlRight"
    Sheets("Sheet1").Cells(2, 2).HorizontalAlignment = HzAlng
        
End Sub
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
xlRight isn't a string, it's a constant

VBA Code:
Sub AlignmentTestDoesNotWork()

    Dim HzAlng As Long
   
    HzAlng = xlRight
    Sheets("Sheet1").Cells(2, 2).HorizontalAlignment = HzAlng
       
End Sub
 
Upvote 1
Solution
Try:

VBA Code:
Sub AlignmentTest()
    Dim HzAlng As Variant         'as variant
    
    HzAlng = xlRight              'without quotation marks
    
    Sheets("Sheet1").Cells(2, 2).HorizontalAlignment = HzAlng
        
End Sub
 
Upvote 0
xlRight isn't a string, it's a constant

VBA Code:
Sub AlignmentTestDoesNotWork()

    Dim HzAlng As Long
  
    HzAlng = xlRight
    Sheets("Sheet1").Cells(2, 2).HorizontalAlignment = HzAlng
      
End Sub
This works. Thanks for your help!
 
Upvote 0

Forum statistics

Threads
1,215,097
Messages
6,123,076
Members
449,094
Latest member
mystic19

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