I want to correlate data from 2 sources. First data source contains store_events (**source1=store_events**) and second source contains book_events (**source2=book_events**). Source store_events contains a field called store_start_time and source book_events contains a field called store_end_time. Both sources contain a field called **customerid**.
How can I join the data based on customerid and create a report with my x-axis showing total_time (store_start_time + store_end_time) and y-axis showing total events ?
Any help is appreciated.
↧