Filter Arrows In Left Of Cells?

John Caines

Well-known Member
Joined
Aug 28, 2006
Messages
1,155
Office Version
  1. 2019
Platform
  1. Windows
Hello All.
I have some VBA code that hides a few filters within a range which is;
Code:
Sub HideArrows()
    With Range("L26:AC26")
        If .Worksheet.AutoFilterMode Then .Worksheet.AutoFilterMode = False
        .AutoFilter
        .AutoFilter Field:=.EntireRow.Range("N1").Column - .Column + 1, _
                    VisibleDropdown:=False
        .AutoFilter Field:=.EntireRow.Range("O1").Column - .Column + 1, _
                    VisibleDropdown:=False
        .AutoFilter Field:=.EntireRow.Range("P1").Column - .Column + 1, _
                    VisibleDropdown:=False
        .AutoFilter Field:=.EntireRow.Range("Q1").Column - .Column + 1, _
                    VisibleDropdown:=False
    End With
End Sub

My problem is for aesthetic reasons :-(.......
Is there any way to make these arrows show in the left hand side of the cells?
Excel always puts them in the right hand side of a cell.

Would be great if somehow I could make them appear in the left.

Many thanks.
I hope there's a solution :-)

All the best

John Caines
 
As a note,,
Here's a screenshot of my problem;
KLZ8T.jpg


I hope you can see my predicament.

Any ideas anybody??

Just want to be able to sort a list of words in Column M (From M27), but have the filter arrow show up in Q26.

help:-)

Difficult 1.
heyho.

Many thanks
John Caines
 
Upvote 0

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