Вопрос

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.

Нет правильного решения

Другие советы

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")))
Лицензировано под: CC-BY-SA с атрибуция
Не связан с sharepoint.stackexchange
scroll top