I need help with Slice Row filter condition

We have a Service vehicle app that lets users log the odometer ready every time they use the car.

I need help with expression to enter in the Slice Row Filter condition to show only entries that are for today and todayโ€™s month.

Thank you.

Solved Solved
1 9 413
1 ACCEPTED SOLUTION

Steve
Platinum 4
Platinum 4

For today:

(TODAY() = DATE([DateTime]))

For this month:

(EOMONTH(TODAY(), 0) = EOMONTH([DateTime], 0))

View solution in original post

9 REPLIES 9

Steve
Platinum 4
Platinum 4

For today:

(TODAY() = DATE([DateTime]))

For this month:

(EOMONTH(TODAY(), 0) = EOMONTH([DateTime], 0))

It works! Thank you very much!. @Steve

One last thingโ€ฆ can you send a reference to learn all this stuff about expressions?

@waldo

Hi colleagues
and for yesterday?

thks.

Rather than do it for you, how about you share what youโ€™ve tried?

Hi Steve,
I checked by โ€œTodayโ€ and it is OK and running:

โ€œand(isnotblank([data prevista dโ€™actuaciรณ]),(TODAY()= DATE([data prevista dโ€™actuaciรณ])-1),OR(([estat])=โ€œ0: obertaโ€, ([estat])=โ€œ1: iniciadaโ€,([estat])=โ€œ3: reobertaโ€))โ€

but for โ€œyesterdayโ€ i tried diferents options and it not runs.

ex: ((TODAY()= DATE([data prevista dโ€™actuaciรณ])-1)

Yesterday is (TODAY() - 1), so:

(TODAY() - 1) = DATE([data prevista dโ€™actuaciรณ])

Thks Steve,
I had already tried it as you told me,
but the problem was that the parenthesis after the (-1) was missing.
sorry

Great. Thanks again.

Top Labels in this Space