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

How do I display text and an expression in a text object?

'AVG TIME:' & =time(avg(aggr(Interval(max(EventDate)-min(EventDate), 'mm:ss'), SessionID)),'mm:ss')

This for example gives me :

'AVG TIME:' & =time(avg(aggr(Interval(max(EventDate)-min(EventDate), 'mm:ss'), SessionID)),'mm:ss')

When I would like my output of the text object to read

AVG Time: 30:00

for example...

It seems successful if I do this the other way around, e.g.

=time(avg(aggr(Interval(max(EventDate)-min(EventDate), 'mm:ss'), SessionID)),'mm:ss') & 'Is the avg time'

why would the order matter so much? Seems very quirky.

1 Solution

Accepted Solutions
er_mohit
Master II
Master II

='AVG TIME ' &  time(avg(aggr(Interval(max(EventDate)-min(EventDate), 'mm:ss'), SessionID)),'mm:ss')

hopr it helps

sorry my mistake remove that equal

View solution in original post

2 Replies
er_mohit
Master II
Master II

='AVG TIME ' &  time(avg(aggr(Interval(max(EventDate)-min(EventDate), 'mm:ss'), SessionID)),'mm:ss')

hopr it helps

sorry my mistake remove that equal

Not applicable
Author

Nor working, it's not happy with the second = in the expression.