align right if cell is greater than zero

mark692

Active Member
Joined
Feb 27, 2015
Messages
321
Office Version
  1. 2016
Platform
  1. Windows

Excel 2013/2016
ABC
1accountDebitCredit
2Cash25
3sales100
4
Sheet1



in this table i want to align column A to right if column C is greater than zero, thanks :)
 

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
Try this:
Code:
Sub Align_Me()
Application.ScreenUpdating = False
With Range("C2:C" & Cells(Rows.Count, "C").End(xlUp).Row)
.AutoFilter 1, ">" & 0
.SpecialCells(12).Offset(0, -2).HorizontalAlignment = xlRight
.AutoFilter
End With
Application.ScreenUpdating = True
End Sub
 
Last edited:
Upvote 0
Try this:
Code:
Sub Align_Me()
Application.ScreenUpdating = False
With Range("C2:C" & Cells(Rows.Count, "C").End(xlUp).Row)
.AutoFilter 1, ">" & 0
.SpecialCells(12).Offset(0, -2).HorizontalAlignment = xlRight
.AutoFilter
End With
Application.ScreenUpdating = True
End Sub


thanks sir can you add align right to column a if column b is greater than zero?
 
Upvote 0
Do you mean if both B and C are less then zero?
Or B or C are less then zero?
 
Upvote 0
Here is another way...
Code:
[table="width: 500"]
[tr]
	[td]Sub AlignAccounts()
  Dim R As Long
  Application.ScreenUpdating = False
  For R = 2 To Cells(Rows.Count, "A").End(xlUp).Row
    Cells(R, "A").HorizontalAlignment = xlLeft + (xlLeft - xlRight) * (Cells(R, "C") > 0)
  Next
  Application.ScreenUpdating = True
End Sub[/td]
[/tr]
[/table]
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,119
Members
451,398
Latest member
rjsteward

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