Ich benötige eine *saubere* Function, die mir zurückgibt, ob ein Variant leer ist.
Mit "leer" meine ich auch, wenn z.B. in einem String zwar " " steht, aber ein Trim$(Var) = "" ergibt.
Bisheriger Code:
Public Function IsEmptyValue(vValue As Variant) As Integer
IsEmptyValue = True
If Isempty(vValue) Or Isnull(vValue) Then Exit Function
If Isscalar(vValue) Then
If Not (Trim$(Cstr(vValue)) = "") Then IsEmptyValue = False
Exit Function
End If
If Isarray (vValue) Or Islist (vValue) Then
Forall elem In vValue
If Not (Trim$(Cstr(elem)) = "") Then
IsEmptyValue = False
Exit Forall
End If
End Forall
End If
End Function
Jetzt kann es aber doch sein, dass vValue ein Array ist, welches Arrays als Elemente enthält, oder?
Wie macht Ihr die Prüfung, ob eine Variable wirklich "leer" ist?