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 217
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