Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

How to write the Expression for Subtraction and multiplication?

Hi Community,

I am facing the same problem in my development, but i need to subtrct the two row from different columns in the same table.

Example:

Time 1 Time 2

3 2

6 3

Tatal 9 5 =4 (9-5)

Can you please suggest how can i write expression for 9-5= 4 and Multply 4 with some other number like 4*9=36.

Thanks

Bhupal

1 Solution

Accepted Solutions
Not applicable
Author

Hi Bhupal,

You can use total function i.e

Total(Sum(time1))- total(sum(time2)

and for the multiplication with other number

Total(Sum(time1))- total(sum(time2) * 4 (any number you wnat)

View solution in original post

4 Replies
Not applicable
Author

Hi Bhupal,

You can use total function i.e

Total(Sum(time1))- total(sum(time2)

and for the multiplication with other number

Total(Sum(time1))- total(sum(time2) * 4 (any number you wnat)

anbu1984
Master III
Master III

rbecher
MVP
MVP

Rather:

=( sum(Time1) - sum(Time2) ) * 4

- Ralf

Astrato.io Head of R&D
Anonymous
Not applicable
Author

Hi All,

My problem is solved.

Thank You !

BR

Bhupal