Excel 365 axis formatting Min/Max values not modifiable

Diskutiere und helfe bei Excel 365 axis formatting Min/Max values not modifiable im Bereich Microsoft Office im Windows Info bei einer Lösung; Hello,i want to format the axis in Excel 365, but it does not work. It is possible to type sth in the space for "Minimum" and "Maximum" want to set... Dieses Thema im Forum "Microsoft Office" wurde erstellt von fwf23, 27. Mai 2021.

  1. fwf23
    fwf23 Gast

    Excel 365 axis formatting Min/Max values not modifiable


    Hello,i want to format the axis in Excel 365, but it does not work. It is possible to type sth in the space for "Minimum" and "Maximum" want to set -0.6 for Minimum, but as soon as i press ENTER it stays at -0.8. Obviously the "Auto" does not allow any changes, but i dont understand how to deactivate Auto.I loaded the data from a text file, changed ". to ," and set decimal number. The plot looks fine, i only need to make the axis more "beautiful".I am able to format the axis on a computer with an older version of Excel, so i think the problem is not me but the Excel 365 Microsoft Office 3
     
  2. Andreas Killer Win User

    Excel 365 Achsenformatierung funktioniert nicht (Min/Max-Werte nicht veränderbar)

  3. Claus B. Win User

    Kann ich "Min" durch "Max" ersetzen?

    Hallo Mark,
    markiere den Bereich in dem MIN durch MAX ersetzt werden soll. Ersetzen wirkt sich dann nur auf den markierten Bereich aus.
    Claus
  4. Mark Nahold Win User

    Kann ich "Min" durch "Max" ersetzen?

    wie mach ich, dass in den spalten ai bis al mini nicht ersetzt wird?, danke im voraus.
  5. steve1da Win User

    Kann ich "Min" durch "Max" ersetzen?

    Hola,
    Suchen/Ersetzen klappt auch in Formeln.
    Gruß,
  6. Andreas Killer Win User

    Diagramm X-Achse mit Bildlaufleiste steuern.

    Man kann in einem Diagramm ganz einfach zoomen, man muss nur das Minimum bzw. Maximum der Achse(n) verändern.

    Das geht auch von Hand, ist natürlich ein wenig umständlich, aber dafür gibt es ja VBA.

    Mach Dir mal eine UserForm und erstelle diese Steuerelemente und bennene sie:

    2 x Label : lbPosition, lbSize

    2 x Scrollbar : sbPosition, sbSize

    2 x Commandbutton: cbClose, cbAuto

    Dann kopierst Du den Code unten in das Codemodul der Userform. Die Userform selber benennst zu ufChartScale um und machst Dir noch ein normales Modul mit diesem Makro:

    Sub ChartScale()

    ufChartScale.Show 0

    End Sub

    Fertig, mehr braucht es nicht. VBA zu, klick auf ein Diagramm, drück Alt-F8 und führe ChartScale aus.

    Mit der Size-Scrollbar kannst Du zoomen, mit der anderen in der Zeitachse scrollen.

    Andreas.

    Option Explicit

    Dim ThisAxis As Axis

    Dim ThisMaximumScale, ThisMinimumScale

    Private Sub cbAuto_Click()

    'Zoom all

    ThisAxis.MinimumScaleIsAuto = True

    ThisAxis.MaximumScaleIsAuto = True

    'Update the scrollbars

    With sbPosition

    .Max = ThisMaximumScale

    .Value = ThisAxis.MinimumScale

    sbSize.Value = .Max - .Min

    End With

    End Sub

    Private Sub cbClose_Click()

    'Done

    Unload Me

    End Sub

    Private Sub sbPosition_Change()

    'Exit if we are called during initialization

    If Not Application.EnableEvents Then Exit Sub

    'Scale the chart

    ThisAxis.MinimumScale = sbPosition.Value

    ThisAxis.MaximumScale = sbPosition.Value + sbSize.Value

    UpdateLabels

    End Sub

    Private Sub sbSize_Change()

    'Exit if we are called during initialization

    If Not Application.EnableEvents Then Exit Sub

    'Update the limit of the position scrollbar

    With Me.sbPosition

    .Max = ThisMaximumScale - Me.sbSize.Value

    .LargeChange = (.Max - .Min) / 10

    If .LargeChange = 0 Then .LargeChange = 1

    End With

    'This control is combined with the position

    sbPosition_Change

    End Sub

    Private Sub UserForm_Activate()

    Dim SaveMinimumScale, SaveMaximumScale

    'Close the form by ENTER and ESC

    Me.cbClose.Default = True

    Me.cbClose.Cancel = True

    'Is a chart selected?

    If ActiveChart Is Nothing Then

    MsgBox "Select a chart and try again.", vbInformation, "ChartScale"

    Unload Me

    Exit Sub

    End If

    'Show the name of the chart

    If ActiveChart.HasTitle Then

    Me.Caption = "Chart '" & ActiveChart.ChartTitle.Caption & "'"

    Else

    Me.Caption = "Chart '" & ActiveChart.Name & "'"

    End If

    'Get the axis to scale

    Set ThisAxis = ActiveChart.Axes(xlCategory)

    Application.ScreenUpdating = False

    'Save the current settings

    SaveMinimumScale = ThisAxis.MinimumScale

    SaveMaximumScale = ThisAxis.MaximumScale

    '"Zoom all"

    ThisAxis.MinimumScaleIsAuto = True

    ThisAxis.MaximumScaleIsAuto = True

    DoEvents

    'Get the limits

    ThisMinimumScale = ThisAxis.MinimumScale

    ThisMaximumScale = ThisAxis.MaximumScale

    'Restore the settings

    ThisAxis.MinimumScale = SaveMinimumScale

    ThisAxis.MaximumScale = SaveMaximumScale

    DoEvents

    'Let the change event routines know that we are working

    Application.EnableEvents = False

    'Get the limits for our scroll bars

    With Me.sbSize

    .Min = 1

    .Max = ThisMaximumScale - ThisMinimumScale

    .LargeChange = (.Max - .Min) / 10

    .Value = ThisAxis.MaximumScale - ThisAxis.MinimumScale

    End With

    With Me.sbPosition

    .Min = ThisMinimumScale

    .Max = ThisMaximumScale - Me.sbSize.Value

    .LargeChange = (.Max - .Min) / 10

    If .LargeChange = 0 Then .LargeChange = 1

    .Value = ThisAxis.MinimumScale

    End With

    'Update the labels

    UpdateLabels

    'Done

    Application.EnableEvents = True

    Application.ScreenUpdating = True

    End Sub

    Private Sub UpdateLabels()

    'Update our labels to show the current position and size

    Me.lbPosition = ThisAxis.CategoryNames(sbPosition.Value - sbPosition.Min + 1)

    Me.lbSize = sbSize.Value + 1

    End Sub
  7. User Advert


    Hi,

    willkommen im Windows Forum!
Thema:

Excel 365 axis formatting Min/Max values not modifiable - Microsoft Office

Die Seite wird geladen...

Excel 365 axis formatting Min/Max values not modifiable - Similar Threads - Excel 365 axis

Forum Datum

Kann ich "Min" durch "Max" ersetzen?

Kann ich "Min" durch "Max" ersetzen?: Ich möchte in der ganzen spalte c alle min durch max ersetzen. Wie mach ich das, ohne alles einzeln zu ändern? Z.B. MINA3:A26 soll zu MaxA3:A26 werden. Für die ganze spalte.
Microsoft Office 12. April 2023

Excel formatting problem

Excel formatting problem: Hello dear Microsoft Community,When I enter a very long number into Excel, half of it is replaced with zeros!Why?Thanks in advance!
Microsoft Office 18. November 2021

Excel 365 Achsenformatierung funktioniert nicht Min/Max-Werte nicht veränderbar

Excel 365 Achsenformatierung funktioniert nicht Min/Max-Werte nicht veränderbar: Hallo,ich möchte in Excel 365 die Achsen formatieren, es geht aber nicht.Ich kann zwar in den Eingabebereich bei "Minimum" etwas eintippen, aber nach ENTER drücken bleibt einfach der bisherige...
Microsoft Office 27. Mai 2021

Excel Power Query: Min/Max Datum aus mehreren Spalten + Überschrift übernehmen

Excel Power Query: Min/Max Datum aus mehreren Spalten + Überschrift übernehmen: Hallo, ich würde gerne in Power Query das Minimum Datum aus 4 Spalten ermitteln und in einer neuen Spalten festhalten mit Excel ziemlich einfach.... Zusätzlich würde ich gerne die...
Microsoft Office 8. Januar 2021

Excel #VALUE Error

Excel #VALUE Error: Ich habe eine Arbeitsmappe von einem Kollegen erhalten um Schulnoten zu berechnen. Bei mir taucht in jedem Feld mit Formel ein #VALUE Error bzw. #### auf. Die gleiche Datei auf einem anderen...
Microsoft Office 24. September 2018

Excel #VALUE Error

Excel #VALUE Error: Ich habe eine Arbeitsmappe von einem Kollegen erhalten um Schulnoten zu berechnen. Bei mir taucht in jedem Feld mit Formel ein #VALUE Error bzw. #### auf. Die gleiche Datei auf einem anderen...
Microsoft Office 22. September 2018

Differenz aus Max(...) und Min(...) ist nicht derselbe Werte wie bei manueller Berechnung

Differenz aus Max(...) und Min(...) ist nicht derselbe Werte wie bei manueller Berechnung: Hallo zusammen, wenn ich aus einem Vektor verschiedener Zahlen die folgende Differenz bilde, ist der angezeigte Wert nicht der, mit dem Excel weiterrechnet (unter bestimmten Voraussetzungen, Bug...
Microsoft Office 17. Februar 2017
Excel 365 axis formatting Min/Max values not modifiable solved
  1. Diese Seite verwendet Cookies, um Inhalte zu personalisieren, diese deiner Erfahrung anzupassen und dich nach der Registrierung angemeldet zu halten.
    Auf dieser Website werden Cookies für die Zugriffsanalyse und Anzeigenmessung verwendet.
    Wenn du dich weiterhin auf dieser Seite aufhältst, akzeptierst du unseren Einsatz von Cookies.