hi @jacobmcn67, You can use mvrange function which creates a multivalue field with a range of numbers between X and Y, incrementing by Z. | makeresults
| eval start="11:00", end="14:00"
| eval st="04/19/2021 ".start, et="04/19/2021 ".end
| eval st=strptime(st, "%m/%d/%Y %H:%M"), et=strptime(et, "%m/%d/%Y %H:%M")
| eval mv=mvrange(st,et,"1h"), mv=strftime(mv, "%H:%M")
| table start, end, mv Here 04/19/2021 is some date used just to convert start and end to the epoch values. It is a constant and you don't need to change it. If this reply helps you, a like would be appreciated.
... View more