Ich gebe in Excel folgendes ein:
+12500/12*6=6429,999usw
Das Ergebnis ist nicht das Problem, jedoch macht Exce
hin-und-wieder was Bill_Gates will.
mal bleibt die Formel wie sie ist
mal schreibt excel +12500*0,5=… oder
mal schreibt Excel nur das Ergebnis und verschluckt die Formel
in der Zelle.
Hi Okg,
lade mal eine Beispioelmappe hoch wo das geschieht, hochladen z.B. hier: FA:2861.
Gib an welche Excelversion, welche SPs, dito für Betriebssystem.
PC oder Mac?
Geschieht das auch wenn du dieses makro laufen läßt, dann lade mal die Mappe hoch wo das geschah:
Bei meinem XL2000 konnte ich das problem nicht nachstellen.
Sub Formeln()
Dim Anz As Integer, A As Integer, Z As Long, Rech, F As String
Const Zei As Long = 10000
Application.ScreenUpdating = False
Rech = Array("=", "+", "-", "\*", "/")
Randomize
Anz = Int(Rnd(Time) \* 10)
For Z = 1 To Zei
Randomize
F = Rech(Int(Rnd(Time) \* 2)) & Chr(49 + Int(Rnd(Time) \* 9))
Randomize
For A = 1 To Int(Rnd(Time) \* 10)
Randomize
F = F & Rech(Int(Rnd(Time) \* 4))
Randomize
F = F & Chr(49 + Int(Rnd(Time) \* 9))
Next A
Cells(Z, 2) = Len(F)
Cells(Z, 1).Formula = F
Next Z
ActiveWindow.DisplayFormulas = True
Application.ScreenUpdating = True
End Sub
Gruß
Reinhard