1
Excel / Antw: Identifikation einer Zeile anhand Feldinhalt (indirekter Bezug)
« am: März 07, 2013, 13:52:07 Nachmittag »
Hallo nochmal,
falls es interessiert: Das Problem ist behoben
Mittels folgendem Makro:
Function CellFormula(Rng As Range) As String
Dim strResult As String
strCell = Rng.Formula
For i = 1 To Len(strCell)
If (Strings.Mid(strCell, i, 1) >= 0 And Strings.Mid(strCell, i, 1) <= 9) Then
strResult = strResult + Strings.Mid(strCell, i, 1)
End If
Next
CellFormula = strResult
End Function
Und der Funktion (z.B. in Feld A3):
=WENN(C3<>"-";WENN(INDIREKT("D"&TEXT(CellFormula(D3);"#"))<>"";WAHR;FALSCH))
Gruß, morcint
falls es interessiert: Das Problem ist behoben
Mittels folgendem Makro:
Function CellFormula(Rng As Range) As String
Dim strResult As String
strCell = Rng.Formula
For i = 1 To Len(strCell)
If (Strings.Mid(strCell, i, 1) >= 0 And Strings.Mid(strCell, i, 1) <= 9) Then
strResult = strResult + Strings.Mid(strCell, i, 1)
End If
Next
CellFormula = strResult
End Function
Und der Funktion (z.B. in Feld A3):
=WENN(C3<>"-";WENN(INDIREKT("D"&TEXT(CellFormula(D3);"#"))<>"";WAHR;FALSCH))
Gruß, morcint