문제

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