Substract minutes from DateTime (TimeStamp)

Hello everyone.

I am trying to apply a Show? expression in which it only shows the columns 5 minutes after the TimeStamp was created.

This is what I tried so far but the result for both was the same = column not shown .
NOW()<([MARCA TEMPORAL]-“000:05:00”)

The second option I tried, was to add a virtual column with duration values and the following formula:
CONCATENATE(“000:”,“5”,":00")

After I used the following expression for Show?
NOW()<([MARCA TEMPORAL]-[MINUTOS])

Didn´t work either…

Any ideas?

Thank you in advance to all!

Solved Solved
0 2 303
1 ACCEPTED SOLUTION

Steve
Platinum 4
Platinum 4

Do you mean you only want it to display until 5 minutes have passed? Or that it shouldn’t display until after 5 minutes have passed?

To display only until 5 minutes have passed:

NOW()<([MARCA TEMPORAL]+“000:05:00”)

To display only after 5 minutes have passed:

NOW()>([MARCA TEMPORAL]+“000:05:00”)

View solution in original post

2 REPLIES 2

Steve
Platinum 4
Platinum 4

Do you mean you only want it to display until 5 minutes have passed? Or that it shouldn’t display until after 5 minutes have passed?

To display only until 5 minutes have passed:

NOW()<([MARCA TEMPORAL]+“000:05:00”)

To display only after 5 minutes have passed:

NOW()>([MARCA TEMPORAL]+“000:05:00”)

Sorry I missed that!
You´re the man Steve, thanks so much!

Top Labels in this Space