How To Import an Excel Spreadsheet in Zoho Analytics

Possible Resolution

    1.  Log into Zoho Analytics.
    2. Click on “Import Your Data” in the upper right corner.
    3. Click on the Microsoft Excel icon.
    4. Import your data.
    5. Select the sheets to be imported.
    6.  Confirm import of your data, and add a Table Name.
    7. Click the “Create” button.
    8.  Success! You are ready to start working with your data in Zoho Analytics.
    9. You are now ready to start working with your imported data in Zoho Analytics.
    10.  Optional: If you select “Yes” on the Auto Generate Reports pop-up, it will generate a dashboard summarizing all your data.
    11. Hover over any part of the dashboard to get more details and dive more deeply into the data.
    12. To return to your data table, go to the sidebar > Data > Select your data table by name.
    13. This looks great, but let’s create some SQL queries (commands) to filter out our data and make it more valuable.
    14. We’re going to create 3 different SQL procedures that will filter the data by:
      1. Total sales per month
      2. Total sales per salesperson, separated by month
      3. Total sales by product, separated by month
    15. Go to the sidebar > Create > Query TableHow to Rename a Column in Zoho Analytics
      1. What you’ll often find after importing your data is that some of the column names may not make sense from an analytical point of view. Here, we’ve changed the “Month” column to the more appropriate name of “Date”.
      2. Go back to your table.
      3. Right-click on the column header.
      4. Select “Rename Column”.
    1. How to Sort Data by Sales Per Month

    2. Enter in this SQL Query (or a similar query) into the code box.
      1. SELECT     month(“Date”) AS Month,     year(“Date”) AS Year,     “Products” AS “Product Name”,     SUM(“Sales in Dollars”) AS “Net Total Sales” FROM “DemoSalesData” GROUP BY Month,     Year,     “Product Name” ORDER BY Month,     Year, “Product Name”
      2.  Click “Execute Query”, and make sure you are in the Executed Result tab
      3.  Preview your results and pick 2 or 3 data points to do a quick spot check for missing columns or other errors.
      4.  Remember to save the table when you are done!

How to Sort Data by Sales Per Salesperson Per Month

  1. Here is a sample SQL query:
    1. SELECT     month(“Date”) AS Month,     year(“Date”) AS Year,     “Salesperson”,     “Products” AS ProductName,     “Sales (Dollars)” FROM “DemoSalesData” GROUP BY Month,     “Date”,     “Salesperson”,     “Products”,     “Sales (Dollars)” ORDER BY “Salesperson”
  2. How to Sort Sales by Product, Separated by Month in Zoho Analytics
  3. Enter this SQL query (or a similar query)
    1. SELECT     month(“Date”) AS Month,     year(“Date”) AS Year,     “Products” AS “Product Name”,     SUM(“Sales in Dollars”) AS “Net Total Sales” FROM “DemoSalesData” GROUP BY Month,     Year,     “Product Name”     ORDER BY Month,     Year,     “Product Name”