You have two tables where the columns differ.
You need to merge two tables where the entries meet the conditions:
Enter the following SQL query:
SELECT * FROM T1 JOIN T2 ON T1.'Transaction ID' = T2.'Transaction ID' WHERE ( 'Transaction Date' >= "10 / 1 / 2018" AND 'Transaction Date' < "11 / 1 / 2018" ) AND ( 'Customer Type' = "Business" ) |
WHERE ('...' >= "10/1/2018" AND '...' < "11/1/2018") AND ('...' = "...") extracts only those records that fulfill a specified condition.
You can use FORMATWIKI function for the purposes of cell formatting. |
|