I would like to create a grid report that shows revenue per customer per month. But only if this amount (revenue per month) exceeds a certain value. I thought I could do this with the ‘Having group’ function, but that doesn't seem to work. (Without the ‘Having group’ the report works fine).
I tried it like this:
Group by: MONTH:date, customer
Columns: sum:revenue
Filter:
Having: sum:revenue > 100
Is there a way to generate a corresponding report?
I tried it like this:
Group by: MONTH:date, customer
Columns: sum:revenue
Filter:
Having: sum:revenue > 100
Is there a way to generate a corresponding report?
Comment