Skip to main content
Announcements
July 15, NEW Customer Portal: Initial launch will improve how you submit Support Cases. IMPORTANT DETAILS
cancel
Showing results for 
Search instead for 
Did you mean: 
hopkinsc
Partner - Specialist III
Partner - Specialist III

Expression help

hi,

I am trying to write an expression and need some help.

I have a dimension of 'Month'

and i need to count 'Offline ID' where 'Offline Date' falls within each month.

Can anyone help please?

4 Replies
hic
Former Employee
Former Employee

You should create the "Month" from the "Offline Date" already in the script. Then the count will easily be displayed in a chart with Month as dimension and Count(distinct [Offline ID]) as expression.

HIC

Not applicable

Are these two tables joined?

Maybe you should join them using IntervalMatch()?

Not applicable

IF(not Isnull(Offline Date),count (Offline ID))

Not applicable

Use Henrics suggestion. Applying the transformation in script will have performance benefits for you in the front-end. As he stated, the expression then is very simple