ich habe diese Zeile in meinem Makro:
Format(Cells(2, 20), "##:##")
ich brauch aber das Format:
##":"##
damit ich in meinem Stundenplan so eingeben kann: 930 daraus wird 9:30
mfg matthias
Format(Cells(2, 20), "##:##")
##":"##
= Cells(2, 20)
Format(Cells(2, 20), "##"":""##")
Format(Cells(2, 20), "##\:##")