profile pic Excel
Upvote 0 Downvote
Understanding VLOOKUP in Excel Data Analyst @ Accenture Difficulty easy

Can you explain how the VLOOKUP function works in Excel and provide an example of its usage?

Solution:

Please sign-in to view the solution

Upvote 0 Downvote
Excel Exercise: Pivot Tables, VLOOKUP, Filters Data Analyst @ Amazon Difficulty easy

Describe how you would use Excel to perform tasks involving Pivot Tables, VLOOKUP, and Filters. Provide examples.

Solution:

Please sign-in to view the solution

Upvote 0 Downvote
Forecasting Pricing for TV Model Based on Sales Data Data Analyst @ Amazon Difficulty hard

Written question: How would you forecast pricing for this particular model of TV based on this sales data from last year?

Solution:

Please sign-in to view the solution

Upvote 0 Downvote
Creating Sales Charts and Highlighting Top Sales in Excel Data Analyst @ Microsoft Difficulty easy

Perform the following tasks:

  1. Create a bar chart to visualize the total sales amount for each product.
  2. Use VLOOKUP to find the sales amount of a specific product by its Product ID.
  3. Apply conditional formatting to highlight the top 10% of sales amounts in the Sales Amount column.

Input: sales_data in Excel has the following data:

| Product ID | Product Name | Sales Amount | Sale Date  |
|------------|--------------|--------------|------------|
| 1          | Product A    | 500          | 2023-10-01 |
| 2          | Product B    | 300          | 2023-10-02 |
| 3          | Product C    | 700          | 2023-10-03 |
| 4          | Product D    | 600          | 2023-10-04 |
| 5          | Product E    | 200          | 2023-10-05 |
Solution:

Please sign-in to view the solution

Upvote 0 Downvote
Excel Background and Technical Proof Data Analyst @ Microsoft Difficulty easy

Using the dataset above, write an Excel formula to calculate the total sales made by each salesperson. Provide the calculated total sales for "John."

Input Data:

Consider a dataset in Excel with the following columns: `Salesperson`, `Product`, `Quantity`, and `Price`. 

**Data**
| A          | B      | C        | D      |
|------------|--------|----------|--------|
| Salesperson| Product| Quantity | Price  |
| John       | Widget | 10       | 15     |
| Jane       | Gadget | 5        | 20     |
| John       | Gizmo  | 7        | 30     |
| Alice      | Widget | 3        | 15     |
| Jane       | Gadget | 10       | 20     |
Solution:

Please sign-in to view the solution

Upvote 0 Downvote
Maximum IF Statements in Nested IF Conditions in Excel Data Analyst @ Microsoft Difficulty easy

What is the maximum number of IF statements you can nest within a single formula in Excel? Provide an example of a nested IF statement.

Solution:

Please sign-in to view the solution

Upvote 0 Downvote
Sales Performance Analysis Data Analyst @ Uber Difficulty medium

Write a SQL query to find the top 3 products based on total sales value.

Additionally, create a Python script to plot a line graph showing daily total sales over the past month.

Lastly, explain how you would use Excel to calculate and visualize the sales trend.

Input:

transactions Table:

| transaction_id | date       | product_id | quantity | price  |
|----------------|------------|------------|----------|--------|
| 1              | 2023-09-01 | 101        | 2        | 10.00  |
| 2              | 2023-09-01 | 102        | 1        | 20.00  |
| 3              | 2023-09-02 | 101        | 1        | 10.00  |
| 4              | 2023-09-02 | 103        | 3        | 15.00  |
| 5              | 2023-09-03 | 102        | 2        | 20.00  |
| 6              | 2023-09-03 | 101        | 2        | 10.00  |
Solution:

Please sign-in to view the solution

Upvote 0 Downvote
Calculate Probability Using SQL and Visualize with Excel Data Analyst @ Uber Difficulty medium

Write an SQL query to calculate the probability that a user who logged in also made a purchase. Then, demonstrate how you would visualize this result using Excel.

Input:

user_events Table:

| user_id | event_type | event_date  |
|---------|------------|-------------|
| 1       | login      | 2023-01-01  |
| 1       | click      | 2023-01-01  |
| 1       | purchase   | 2023-01-01  |
| 2       | login      | 2023-01-02  |
| 2       | click      | 2023-01-02  |
| 3       | login      | 2023-01-03  |
| 3       | click      | 2023-01-03  |
| 4       | click      | 2023-01-04  |
| 4       | purchase   | 2023-01-04  |
| 5       | login      | 2023-01-05  |
Solution:

Please sign-in to view the solution

Upvote 0 Downvote
Handling Data Anomalies in Sales Reports Quality Assurance @ Amazon Difficulty medium

You are analyzing sales data and notice that there are anomalies in the data for several key regions over the past quarter. Specifically, the sales figures for certain products are either too high or too low compared to historical data. Describe a step-by-step approach to identify and address these anomalies using SQL and Python.

Solution:

Please sign-in to view the solution

Upvote 0 Downvote
Identifying and Resolving Sales Data Anomalies Quality Assurance @ Amazon Difficulty medium

You are analyzing sales data and notice that there are anomalies in the data for several key regions over the past quarter. Specifically, the sales figures for certain products are either too high or too low compared to historical data. Describe a step-by-step approach to identify and address these anomalies using SQL and Python.

Solution:

Please sign-in to view the solution

Upvote 0 Downvote
Analysis of Sales Data Using SQL and Power BI Quality Assurance @ IBM Difficulty medium

You are tasked with analyzing sales data for a retail company using SQL and Power BI. The dataset includes tables for sales transactions, products, and customer information. The goal is to create a comprehensive report that provides insights into sales trends, customer segmentation, and product performance.

  1. Data Extraction and Preparation: Outline the SQL queries you would use to extract relevant data from the sales database. Include how you would join tables to gather information on sales transactions, product details, and customer demographics.

  2. Data Analysis in Power BI: Describe the steps you would take in Power BI to visualize and analyze the extracted data. Include the types of visualizations you would create to showcase sales trends over time, customer purchasing behavior, and regional sales performance.

  3. Insights and Recommendations: Based on your analysis, identify key insights such as top-selling products, customer segments with high purchase frequency, and regions with potential growth opportunities. Provide recommendations on strategies to improve sales and customer engagement based on your findings.

Solution:

Please sign-in to view the solution