Can we display multiple day spanning event as a separate event on each day?

Can we display multiple day spanning event as a separate event on each day?

For example: I have an all day event that started yesterday and ends tomorrow. The event only shows yesterday as event time, I would like it to display today and tomorrow as separate events instead. Is this possible? If so please give some guidance.

Thanks,

Ryan

Unfortunately right now there is no way to select events based on date ranges (which would help you in this) so this is not possible unless for every day you select also the all day events in the day before and check if end date is after that which is totally not nice.

Is there a way to use something like ~ $if(df(ddMMYYYY, ci(start,0)) < ci(start,0) + > ci(end,0), ci(title,0))

Outputting the event title if it started yesterday & carries over until tomorrow?

Edit: Essentially asking if today, event 0 start is less than today and event 0 end is greater than today, display event 0 title

I've realised the code I provided couldn't work as it's asking if the event start is greater than event end - let me know if there's a solution.