Frage

I am trying to get this formula to work.

I want: IF column ärende tilldelat is blank I want the calculated column to say "Ej tilldelad".

If you have chosen "Tillkoppling" in the column Ärendetyp I want it to say "test".

 =IF(ISBLANK(OR([Ärende tilldelat]);"Ej tilldelad";([Ärendetyp="Tillkoppling";"test";TEXT([Ärende tilldelat]-[Ärende inkommet];"hh:mm:ss")))

IF "Ärende tilldelad" ISBLANK display "Ej tilldelad" in the calculated column

Else IF choosen "Tillkoppling" in column "Ärendetyp" display "Test" in the calculated column.

Keine korrekte Lösung

Andere Tipps

According to my understanding your requirements are (correct me if I am wrong):

IF [Ärende tilldelat] is blank then calculated column = "Ej tilldelad"
Else IF [Ärendetyp]="Tillkoppling" then calculated column = "test"
Else calculated column = difference between [Ärende tilldelat] and [Ärende inkommet] in format of "hh:mm:ss".

Try using below formula:

=IF(ISBLANK([Ärende tilldelat]);"Ej tilldelad";IF([Ärendetyp]="Tillkoppling";"test";TEXT([Ärende tilldelat]-[Ärende inkommet];"hh:mm:ss")))
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit sharepoint.stackexchange
scroll top