Help filtering on saving email attachments

Hey all-
I get daily statements from a group in an email format as attachments. They come every day Tuesday-Saturday. When I run the automation on Monday to pull the Saturday files I need to extend my day filter further back (3 days) to retrieve. However come weekday I would need to switch the day count retrieval back to one as to not save multiple files from different days.

They will always come from same group.

My thought was to make two automatons, one for the weekend files and one for the weekday files. However, is there a way to achieve this in one go?

Thanks

This is individual check C#

DateTime.Now.DayOfWeek == DayOfWeek.Monday ||
DateTime.Now.DayOfWeek == DayOfWeek.Tuesday ||
DateTime.Now.DayOfWeek == DayOfWeek.Wednesday ||
DateTime.Now.DayOfWeek == DayOfWeek.Thursday ||
DateTime.Now.DayOfWeek == DayOfWeek.Friday

Previous day check

ReceivedTime >= DateTime.Now.AddDays(-1)

Week day filter.

ReceivedTime >= DateTime.Now.AddDays(-3)

So based your convenience, adding Boolean functions you can merge the workflows

Thank you! I am giving this a shot now