When we make math expression with Datetime type it’s like this:
[Datetime] + "005:30:30" OR [Datetime] - "005:30:30"
It’s legit and the part that we add to the datetime value is actually a text. Correct? From this point, basically I should be able to construct the addition/subtraction part of the expression simply with either TEXT() or CONCATENATE() expression or event with using an amperstand (&) operator.
I have a case, where I need to add a total minutes (number) figure to a Timestamp value. I have constructed 2 expressions both ended up where the second argumental expression resulting a blank value:
Expression#1
[TIMESTAMP] + RIGHT("00"&((FLOOR(TOTALMINUTES([TIMESTAMP] - UTCNOW()) + USERTZOFFSET())/60)*-1),3)&":00:00"
Expression#2
[TIMESTAMP] + CONCATENATE("""",RIGHT("00"&((FLOOR(TOTALMINUTES([TIMESTAMP] - UTCNOW()) + USERTZOFFSET())/60)*-1),3)&":00:00","""")
Both expressions seem absolutely legit:
However, the second argument of the math operation evals to blank therefore no addition is made.
Note: When tested, the second part of the expression correctly produces the string btw
Could this be a bug or am I doing/considering/mis-interpreting something wrong?

