Slice not working

I’ve been using the following formula but suddenly the slice doesn’t return anything…

WEEKNUM([Day])=WEEKNUM(TODAY())-1

My template has no records because of this.

Any ideas??

Thank you.

Solved Solved
0 9 215
1 ACCEPTED SOLUTION

Use instead:

(EOWEEK([Day]) = (EOWEEK(TODAY()) - 7))

View solution in original post

9 REPLIES 9

Steve
Platinum 4
Platinum 4

I would guess there are no values of the Day column that occur last week.

My spreadsheet has data for last week. Screen shot below.

Use instead:

(EOWEEK([Day]) = (EOWEEK(TODAY()) - 7))

Thank you @Steve and @LeventK

You’re very welcome.

Can you give a screenshot from your sheet?

WEEKNUM(TODAY()) - 1

gives you Zero (0). However,

WEEKNUM([Day])

is 53. That’s why you can’t see any records.

Is there a workaround??

Top Labels in this Space