Function ScreenTip

Diskutiere und helfe bei Function ScreenTip im Bereich Microsoft Office im Windows Info bei einer Lösung; I would appreciate if Microsoft would release the next Excel version with the Function ScreenTip zoomable, maybe with handles on it like shapes/forms... Dieses Thema im Forum "Microsoft Office" wurde erstellt von MarcelXLS, 3. März 2018.

  1. MarcelXLS
    MarcelXLS Gast

    Function ScreenTip


    I would appreciate if Microsoft would release the next Excel version with the Function ScreenTip zoomable, maybe with handles on it like shapes/forms have it. And the Function ScreenTip should adapt its size when increasing/decreasing the zoom in a worksheet.
     
  2. Peter Schleif Win User

    Erstellungsdatum

    Eine Formel kenne ich nicht. Es geht mit einer VBA-Function:

    =Erstellungsdatum()

    Function Erstellungsdatum() As Date

    Erstellungsdatum = ActiveWorkbook.BuiltinDocumentProperties(11)

    End Function

    Peter
  3. Peter Schleif Win User

    VBA-Excel - Funktion zum Umrechnen von Points in Zentimeter

    Function PointsToCentimeters(pt As Double) As Double

    PointsToCentimeters = pt * 2.54 / 72

    End Function



    Function CentimetersToPoints(cm As Double) As Double

    CentimetersToPoints = cm * 72 / 2.54

    End Function

    Peter
  4. Robert Feldmann Win User

    Zellen mit bestimmter Farbe zählen

    Hallo,

    habe mal Functions geschrieben die sowas machen. Du musst nur noch die Farbe wissen, oder auslesen.



    Mit den Functions für Hintergrund und Schrift kannst Du den aktuellen Wert auslesen. Den könntest Du natürlich auch zählen, oder Du verwendest hierfür die andern Functions, die musst Du dann aber jedesmal anpassen wenn Du andere Farben wählst, daher würde
    ich eher Hintergrund und Schrift verwenden dann steht der Wert in einer separaten Spalte und Du kannst viel flexibler auswerten.



    Function Anzahl_rot(Bereich)

    x = 0

    For Each Zelle In Bereich

    If Zelle.Font.ColorIndex = 3 Then

    x = x + 1

    End If

    Next

    Anzahl_rot = x

    End Function

    Function summe_rot(Bereich)

    x = 0

    For Each Zelle In Bereich

    If Zelle.Font.ColorIndex = 3 Then

    x = x + Zelle.Value

    End If

    Next

    summe_rot = x

    End Function

    Function Schrift(Zelle As Range)

    Application.Volatile

    Schrift = Zelle.Font.ColorIndex

    End Function

    Function Hintergrund(Zelle As Range)

    Application.Volatile

    Hintergrund = Zelle.Interior.ColorIndex

    End Function
  5. Peter Schleif Win User

    Formelfehler: "Zinseszins"

    Bernd Pl schrieb am 04.06.2010 18:05 Uhr:
    an Stelle von ZW2 der Funktionsname FVSCHEDULE angegeben ist:
    Funktioniert nicht; hatte ich schon ganz am Anfang getestet (#NAME). Es liegt wohl tatsächlich an den Spalten-Bezeichnungen; man kann den Fehler mit benutzerdefinierten Funktionen reproduzieren:

    Peter

    Modul1 (Standardmodul)

    '#BEZUG-Fehler bei Versionen <=2003

    Function IV1() As String

    IV1 = "IV1"

    End Function

    'funktioniert

    Function IW1() As String

    IW1 = "IW1"

    End Function

    '#BEZUG-Fehler bei Versionen >=2007

    Function XFD1() As String

    XFD1 = "XFD1"

    End Function

    'funktioniert

    Function XFE1() As String

    XFE1 = "XFE1"

    End Function
  6. the one and only 001 Win User

    Zellen mit bestimmter Farbe zählen

    Vielen Dank.

    Ich habe die Function für mich dann wie folgt genutzt, wobei ich die Farbe hellgrün abgefragt habe:



    Function Anzahl_lightgreen(Bereich)

    x = 0

    For Each Zelle In Bereich

    If Zelle.Interior.ColorIndex = 43 Then

    x = x + 1

    End If

    Next

    Anzahl_lightgreen = x

    End Function
  7. User Advert


    Hi,

    willkommen im Windows Forum!
Thema:

Function ScreenTip - Microsoft Office

Die Seite wird geladen...

Function ScreenTip - Similar Threads - Function ScreenTip

Forum Datum

What is a 32 Port GSM Gateway and how does it function within a business telecommunications system?

What is a 32 Port GSM Gateway and how does it function within a business telecommunications system?: A 32 Port GSM Gateway is a telecommunications device that bridges traditional business phone systems with cellular networks through multiple SIM card slots. As the name suggests, it contains 32...
Software Donnerstag um 11:39 Uhr

The XIRR Function ist nicht aufrufbar in Excel 2021

The XIRR Function ist nicht aufrufbar in Excel 2021: Obwohl die Analyse Funktionen als Anwendungs-Add-Ins aktiviert sind ist die XIRR-Funktion in Excel 2021 nicht verfügbar. Offensichtlich gibt es Probleme mit der ANALYS32.XLL Datei.
Microsoft Office 12. März 2025

How to get SharePoint Available for "Save As" function

How to get SharePoint Available for "Save As" function: Hi ThereFor one of our customer, we are unable to save directly to SharePoint. The users are following certain SharePoint Sites. However they are not showing up in the Save As location. Is there...
Microsoft Office 3. Dezember 2024

IM DEEPLY DISAPPOINTED THERE IS NO EXCEL INQUIRE FUNCTION FOR MAC

IM DEEPLY DISAPPOINTED THERE IS NO EXCEL INQUIRE FUNCTION FOR MAC: IM DEEPLY DISAPPOINTED THERE IS NO EXCEL INQUIRE FUNCTION FOR MACIM DEEPLY DISAPPOINTED THERE IS NO EXCEL INQUIRE FUNCTION FOR MACIM DEEPLY DISAPPOINTED THERE IS NO EXCEL INQUIRE FUNCTION FOR...
Microsoft Office 2. Oktober 2024

TRANSLATE Function in Excel nicht verfügbar

TRANSLATE Function in Excel nicht verfügbar: Hallo CommunityIch versuche die TRANSLATE Funktion in Excel zu verwenden, aber Excel kennt die Funktion nicht. Was sind die Vorraussetzungen für die Verwendung dieser Funktion?
Microsoft Office 25. September 2024

My search function is not working, I just get a no results message when when I look for...

My search function is not working, I just get a no results message when when I look for...: My search function is not working, I just get a no results message when when I look for anything other than a program.Thanks in advance.
Apps 3. September 2024

My search function is not working, I just get a no results message when when I look for...

My search function is not working, I just get a no results message when when I look for...: My search function is not working, I just get a no results message when when I look for anything other than a program.Thanks in advance.
Games und Spiele 3. September 2024
Function ScreenTip 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.