Hello everyone!
So first off I have this formula field:
DATETIME_FORMAT(
IF(
DAY({Tilføjet d.}) <= 10,
DATETIME_PARSE(CONCATENATE(YEAR({Tilføjet d.}), '-', MONTH({Tilføjet d.}), '-11'), 'YYYY-MM-DD'),
DATEADD({Tilføjet d.}, IF(WEEKDAY({Tilføjet d.}) <= 3, 3 - WEEKDAY({Tilføjet d.}), 10 - WEEKDAY({Tilføjet d.}) + 3), 'day')
),
'DD/MM/YYYY'
)
The name of that field is 'Kan laves d.' and shows me the date of the next coming wednesay based off of the date the record was created. So for example if the Record was created today, it will show me 25/2/23.
So what I want to make now is a new formula field, that will add a green circle for all the records that can be made the next coming wednesay, and only for those.
Can someone help me with this?
