Dynamic VBA ranking

anton05

New Member
Joined
Feb 21, 2020
Messages
2
Office Version
  1. 2016
Platform
  1. Windows
Hey Guys

I am new at MrExcel and hope you could help me out :)

I have a spreadsheet where I in VBA determines a range, design, etc. to update and change a graph given the input selected in the tab. As it can be seen in this example from the screenshot the columns are simply listed based on the sequence the headings (brands) are listed in from the range.

I am looking to find a solution (a VBA code) to add where I dynamically can rank the brands descending after size in the given years (here just named data 1,2,3..)This means i would like it to look so that the number one is farthest to the left, then number two, number three and then at last number four to the right at each category (for the visualization/above screenshot, I have marked the columns in each category with 1-4 from largest to smallest).

I have tried to add the current VBA code(s) below:

VBA Code:
Sub ParameterVælger()
    
    Application.ScreenUpdating = False
    
    Sheets("Data").Select

    Cells.Select
    Selection.EntireColumn.Hidden = False
    Selection.EntireRow.Hidden = False

    Dim MyCell As Range, MyRange As Range

Set MyRange = Range("B1:J1")
    
    For Each MyCell In MyRange
    If MyCell = False Then
    MyCell.EntireColumn.Hidden = True
        
    End If
    Next MyCell

Application.ScreenUpdating = True

End Sub

Sub Søjlegrafer_Vælger()

Application.ScreenUpdating = False

'Activates the other VBA's, which will hide the columns in the charts
     
 Call ParameterVælger
 
  For Each ch In Sheets("Choice").ChartObjects
    ch.Delete

Next ch

Worksheets("Graph").ChartObjects("Chart 2").Activate
ActiveChart.SetSourceData Source:=Range("'Data'!$B$3:$J$12")


'Changing chart to line diagram
ActiveChart.ChartType = 51

'Setting the size of the chart
Worksheets("Graph").Shapes("Chart 2").ScaleHeight 1, msoFalse, msoScaleFromTopLeft
Worksheets("Graph").Shapes("Chart 2").ScaleWidth 1, msoFalse, msoScaleFromTopLeft

'Remove outer gridline and make invisible
Worksheets("Graph").Shapes("Chart 2").Line.Visible = msoFalse
Worksheets("Graph").Shapes("Chart 2").Fill.Visible = msoFalse

'Add data labels and color for columns
ActiveChart.SetElement (msoElementDataLabelOutSideEnd)
ActiveChart.ChartGroups(1).GapWidth = 120
ActiveChart.ChartGroups(1).Overlap = -20
'Add Legend
ActiveChart.SetElement (msoElementLegendBottom)

'Add X-axis and adjust layout
Worksheets("Graph").ChartObjects("Chart 2").Chart.HasAxis(xlCategory, xlPrimary) = True
Worksheets("Graph").ChartObjects("Chart 2").Chart.Axes(xlCategory).ReversePlotOrder = False
  
'Add X-axis title and adjust layout
Worksheets("Graph").ChartObjects("Chart 2").Chart.Axes(xlCategory, xlPrimary).HasTitle = True
Worksheets("Graph").ChartObjects("Chart 2").Chart.Axes(xlCategory, xlPrimary).AxisTitle.Characters.Text = "Data"
  
'Add y-axis and adjust layout
Worksheets("Graph").ChartObjects("Chart 2").Chart.HasAxis(xlValue, xlPrimary) = True
Worksheets("Graph").ChartObjects("Chart 2").Chart.Axes(xlValue).MinimumScale = 80
Worksheets("Graph").ChartObjects("Chart 2").Chart.Axes(xlValue).MaximumScaleIsAuto = True
Worksheets("Graph").ChartObjects("Chart 2").Chart.Axes(xlValue).MajorUnit = 20
Worksheets("Graph").ChartObjects("Chart 2").Chart.Axes(xlValue).TickLabelPosition = xlNextToAxis
Worksheets("Graph").ChartObjects("Chart 2").Chart.Axes(xlValue).TickLabels.NumberFormat = "0"
  
'Add y-axis title and adjust layout
Worksheets("Graph").ChartObjects("Chart 2").Chart.Axes(xlValue, xlPrimary).HasTitle = True
Worksheets("Graph").ChartObjects("Chart 2").Chart.Axes(xlValue, xlPrimary).AxisTitle.Characters.Text = "Index"
  
'Add Major Gridlines horizontal and removes the vertical
Worksheets("Graph").ChartObjects("Chart 2").Chart.SetElement (msoElementPrimaryValueGridLinesMajor)
Worksheets("Graph").ChartObjects("Chart 2").Chart.SetElement (msoElementPrimaryCategoryGridLinesNone)

'Ensure chart has a title
Worksheets("Graph").ChartObjects("Chart 2").Chart.HasTitle = True

'Change chart's title
Worksheets("Graph").ChartObjects("Chart 2").Chart.ChartTitle.Text = "Graph 1"

Application.ScreenUpdating = True

'Copies chart and paste it in the "Choice" tab
Worksheets("Graph").ChartObjects("Chart 2").Activate
ActiveChart.ChartArea.Copy
Worksheets("Choice").Select
Range("E5").Select
ActiveSheet.Paste
Range("A1").Select

End Sub


I will be happy to share the workbook as well - please let me know if it is needed :)

I look forward to hearing your solutions.

Thank you so much in advance.

Anton
 

Attachments

  • pk9n9jzshai41.png
    pk9n9jzshai41.png
    11.7 KB · Views: 8

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).

Forum statistics

Threads
1,214,919
Messages
6,122,260
Members
449,075
Latest member
staticfluids

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