Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
i have two tables like below
LOAD delivered,
email_type_id as email_metric_type_id,
date(floor(date_created),'MM-DD-YYYY') as emaildatecreated; //date is not continues
SQL SELECT delivered,
email_type_id,
date_created
FROM EMAILMETRICS;
LOAD
Date(Date#(Date,'YYYYMMDD'),'DD-MM-YYYY') as [Format Date], //date is continues till date
TotalHits;
SQL SELECT
Date,
TotalHits
FROM TrafficView;
Here in EMAILMETRICS, emaildatecreated is not continuos. [Format Date] is continuos. Now i need to put single line graph for delivered and TotalHits for last 6 months. How could i do this?
Please refer below mentioned link:
Date should not repeat, it has to be each date has to be only once. But given link shows date repaeted in x-axis
If multiple data is available on single date then it will be reflect in your report.
That is my question, on how to do it if i have multiple data for single date
Please read the properties of charts from below mention link, i think it will helpful for you.