Online Sales Data
Datasets for helpful Power BI dashboard creation.
@kaggle.samruddhi4040_online_sales_data
Datasets for helpful Power BI dashboard creation.
@kaggle.samruddhi4040_online_sales_data
Within this, I have added 2 datasets for Online Sales Data.
These are helpful to generate dashboards on Power BI.
Orders.csv contains :
Order ID (primary key), Order Date, CustomerName, State, City ->Customer details.
whereas Details.csv contains:
Order ID (primary key) and the details of all the subsequent orders within the Orders.csv ->Order details.
CREATE TABLE details (
"order_id" VARCHAR,
"amount" BIGINT,
"profit" BIGINT,
"quantity" BIGINT,
"category" VARCHAR,
"sub_category" VARCHAR,
"paymentmode" VARCHAR
);CREATE TABLE orders (
"order_id" VARCHAR,
"order_date" VARCHAR,
"customername" VARCHAR,
"state" VARCHAR,
"city" VARCHAR
);Anyone who has the link will be able to view this.