Hi Manny,
You can create custom metrics for the month, that explicitly calculate the total values for the first and last day of the month. You can do this by finding the
min/
max dates in a month. The metrics would look something like this:
SELECT SUM(
Order unit quantity) WHERE
Date - Day of Month = (SELECT MIN(
Date - Day of Month,
Order lines))
SELECT SUM(
Order unit quantity) WHERE
Date - Day of Month = (SELECT MAX(
Date - Day of Month,
Order lines))
Next, you can take these values of the max/min dates and apply them as an internal metrics to compare with other dates.
I hope this helps guide to your desired results, .
Best regards,