I think Zbor's suggestion should be like this
=IF(J7="","",IF(OR(G7="P1",G7="PIC"),MOD(K7-J7,1),""))
That assumes you have times in J7 and K7. If you want to type in just 2350 and 0700 without the colons then format as you suggested and use this version
=IF(J7="","",IF(OR(G7="P1",G7="PIC"),MOD(TEXT(K7,"00\:00")-TEXT(J7,"00\:00"),1),""))
to input the times you can omit leading zeroes so for 07:00 AM you can just input 700
Bookmarks