Hello to everyone. Thanks in advance for your support. Here is my doubt:
I’m using this formula: and(weeknum(now()) >= weeknum({Inicio}),weeknum(now()) <= weeknum({Fin})) to see if an event is “active” and create different views with that filter. The thing is that the formula is using Sunday as the starting day and I want to use Monday, because is the starting weekday in Spain.
How can I solve that? In Airtable I can make this: DATETIME_FORMAT(SET_TIMEZONE({Inicio}, ‘Europe/Madrid’)
I’m actually using that formula, but it is not working.
In the column “SEMANA INICIO” I’m using this formula: weeknum({Inicio}, 11), and as you can see in the red rectangle the actual week is 25 (16/06/2023) and the event week should be (18/06/2023), but it is counting it as the next week (26), because is Sunday.
Yeah, I see. weeknum uses the information of the first week of the year. Even if the 31th of december is a Saturday it will be count as week one of the year. The function isoweeknum instead recognizes it as week 52, so it is the 1st on the Sunday.