Es sind zwei Fälle zu unterscheiden: wie von Mia Steve geschrieben:
1) für alle SMS bis 400 ist es ja ein Festpreis also: x<401 = 20$
2) ab der 401 SMS wird dann zum Festpreis pro SMS 0,20$ addiert: x>400 = 20$ + ((x-400)*0,2))
in Excel wie folgt: =WENN(B2<401;20;"20"+((B2-400)*0,2))
Wobei in...