*runs through the streets naked*
EUREKA! EUREKA!!!
Try this:
Code:
SELECT Qm15_Notifications_base.[Created on], IIf(DatePart("w",[Created on])=1,0,IIf(DatePart("w",[Created on])=7,5,DatePart("w",[Created on])-2)) AS Days_Diff, DatePart("ww",Date())-DatePart("ww",[Created on]) AS Weeks_Diff, [Weeks_Diff]*5+[Days_Diff] AS Age
FROM Qm15_Notifications_base;
I posted the SQL code instead of giving you screenies for two reasons: 1) Your fingers will thank me and, 2) The Query as shown in the Expression Builder was too long to show 
Basically what it does though, is this: It counts each "full" week as 5 days. Then, for any "partial" weeks, it calculates Saturday and Sunday as the following Monday (so any entries from the weekend are counted as being made on the following Monday).