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! Go to Solution.
For today:
(TODAY() = DATE([DateTime]))
For this month:
(EOMONTH(TODAY(), 0) = EOMONTH([DateTime], 0))
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?
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.
User | Count |
---|---|
15 | |
15 | |
8 | |
7 | |
4 |