Hi Dennis,
I assume that your four columns “Time In”, “Lunch Out”, “Lunch In” and “Time Out” are duration-type columns, are they?
If it’s the case, for each column, you can create a corresponding formula-type column with the following formula:
ifs(floor({Time}/3600)=0,"12",floor({Time}/3600)<13,if(floor({Time}/3600)<10,"0","")&text(floor({Time}/3600)),floor({Time}/3600)>=13,text(floor({Time}/3600)-12)) &":"& if(({Time}/3600-floor({Time}/3600))*60<10,"0","")&text(({Time}/3600-floor({Time}/3600))*60) & ifs(floor({Time}/3600)<12," AM",floor({Time}/3600)>=12," PM")
Where you’ll have to replace every occurrence of {Time} by your actual column name
If your four columns are actual date-type columns accurate to minutes, here is the formula you should use:
ifs(hour({Date})=0,"12",hour({Date})<13,if(hour({Date})<10,"0","")&text(hour({Date})),hour({Date})>=13,text(hour({Date})-12)) &":"& if(minute({Date})<10,"0","")&text(minute({Date})) & ifs(hour({Date})<12," AM",hour({Date})>=12," PM")
Where you’ll have to replace every occurrence of {Date} by your actual column name
Hope this is what you were looking for…
Bests,
Benjamin