SkillAgentSearch skills...

Alurachallengebi

#alurachallengebi

Install / Use

/learn @flaviolandim/Alurachallengebi
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

<h1 style="text-align: center;">Alura Challenge BI</h1> <p style="text-align: justify;">This challenge consists in develop skills in Business Intelligence and put in practice all obtained knowledge in Power BI. The challenge will take 4 weeks divided in 3 different projects with different &nbsp;levels of complexity:</p> <p>&nbsp;</p> <ul> <li><a href="#week01">Week 01: Logistics Challenge Dashboard (AluraLog)</a></li> <li><a href="#week02">Week 02: Marketing Dashboard (AluraShop)</a></li> <li><a href="#week03">Week 03 and 04: Financial Challenge Dashboard (AluraStore)</a></li> </ul> <p>&nbsp;</p> <h3>🚀&nbsp; <a id="week01"</a>Week 01: Logistics Challenge Dashboard (AluraLog)</h3> <p style="text-align: justify;">The Alura Log manager is facing some work changes due to the high demand of logistics services during the pandemic time. She wants to keep the quality of her service and she needs constantly follow up the KPI&rsquo;s to take correct decisions. &nbsp;To help her in this analysis a logistics dashboard was created with the following information provided by the customer dataset.</p> <p style="text-align: justify;"> <p>Take a look in the online dashboard: <a href="https://bit.ly/3F6UYKL">https://bit.ly/3F6UYKL</a></p>

image</p>

<p>✔ How many customers purchases was delivered on time?</p> <p>A Card was created to represent this number including a tooltip that shows which kind of vehicle has more on time deliveries.</p> <p style="text-align: justify;">

image</p>

<p style="text-align: justify;">

image</p>

<p>✔ How many customers purchase was not delivered on time ?</p> <p>Also a card was created and tooltip to show which vehicle is having more problems to delivery products on time, this can be a good analysis to understand if late deliveries have any relationship with the kind of transport.</p> <p style="text-align: justify;">

image</p>

<p style="text-align: justify;">&nbsp;</p> <p style="text-align: justify;">

image</p>

<p>✔ Number of available vehicles</p> <p>A card was created to show the total of available cars and a tooltip showing which type of cars are available in a pie chart.</p> <p style="text-align: justify;">

image</p>

<p style="text-align: justify;">

image</p>

<p>✔ Calculate S2D (Ship to Door) median by month</p> <p>Using a DATEDIFF and analysing the days from when the purchase was done by the Customer and when it was delivered I could find the S2D values.</p> <p style="text-align: justify;">

image</p>

<p style="text-align: justify;">

image</p>

<p style="text-align: justify;">A tooltip was create to show the details by year</p> <p style="text-align: justify;">

image</p>

<p>✔ Show how many occurrences by state</p> <p>A Map was created using the longitude and latitude information</p> <p style="text-align: justify;">

image</p>

<p style="text-align: justify;">Bellow you can see some of the measures I have created to develop the Power BI dashboard.</p> <p style="text-align: justify;">

image</p>

<p style="text-align: justify;">&nbsp;</p> <table style="border-collapse: collapse; width: 74.5098%; height: 246px;" border="1"> <tbody> <tr style="height: 18px;"> <td style="width: 13.1691%; height: 18px; text-align: center;"><strong>MEASURE</strong></td> <td style="width: 61.3407%; height: 18px; text-align: center;"><strong>FORMULA</strong></td> </tr> <tr style="height: 19px;"> <td style="width: 13.1691%; height: 19px;">% Acum Categorias</td> <td style="width: 61.3407%; height: 19px;"><code>% Acum Categorias = [Soma Acum Categorias] / CALCULATE([Soma de Vendas], ALL('Tabela - Produtos'))</code></td> </tr> <tr style="height: 19px;"> <td style="width: 13.1691%; height: 19px;">Atrasados</td> <td style="width: 61.3407%; height: 19px;"><code>Atrasados = CALCULATE([Total de Pedidos], FILTER('Tabela - Pedidos', 'Tabela - Pedidos'[Data de Entrega] &gt; 'Tabela - Pedidos'[Data Previs&atilde;o]))</code></td> </tr> <tr style="height: 19px;"> <td style="width: 13.1691%; height: 19px;">Em Transito</td> <td style="width: 61.3407%; height: 19px;"><code>Em Transito = CALCULATE([Total de Pedidos], FILTER('Tabela - Pedidos', 'Tabela - Pedidos'[Status do Pedido] = "Em Transito"))</code></td> </tr> <tr style="height: 19px;"> <td style="width: 13.1691%; height: 19px;">Entregues</td> <td style="width: 61.3407%; height: 19px;"><code>Entregues = CALCULATE([Total de Pedidos], FILTER('Tabela - Pedidos', 'Tabela - Pedidos'[Status do Pedido] = "Entregue"))</code></td> </tr> <tr style="height: 19px;"> <td style="width: 13.1691%; height: 19px;">No Prazo</td> <td style="width: 61.3407%; height: 19px;"><code>No Prazo = CALCULATE([Total de Pedidos], FILTER('Tabela - Pedidos', 'Tabela - Pedidos'[Data de Entrega] &lt;= 'Tabela - Pedidos'[Data Previs&atilde;o]))</code></td> </tr> <tr style="height: 19px;"> <td style="width: 13.1691%; height: 19px;">Qtd Produtos Vendidos</td> <td style="width: 61.3407%; height: 19px;"><code>Qtd Produtos Vendidos = SUM('Tabela - Pedidos'[Quantidade])</code></td> </tr> <tr style="height: 19px;"> <td style="width: 13.1691%; height: 19px;">Rank de Categoria</td> <td style="width: 61.3407%; height: 19px;"><code>Rank de Categoria = RANKX(ALLSELECTED('Tabela - Produtos'), [Soma de Vendas])</code></td> </tr> <tr style="height: 19px;"> <td style="width: 13.1691%; height: 19px;">Soma Acum Categorias</td> <td style="width: 61.3407%; height: 19px;"><code>Soma Acum Categorias = CALCULATE([Soma de Vendas], TOPN([Rank de Categoria], ALL('Tabela - Produtos'),[Soma de Vendas],DESC))</code></td> </tr> <tr style="height: 19px;"> <td style="width: 13.1691%; height: 19px;">Soma de Vendas</td> <td style="width: 61.3407%; height: 19px;"><code>Soma de Vendas = SUMX('Tabela - Pedidos', 'Tabela - Pedidos'[Quantidade] * RELATED('Tabela - Produtos'[Pre&ccedil;o]))</code></td> </tr> <tr style="height: 19px;"> <td style="width: 13.1691%; height: 19px;">Total de Pedidos</td> <td style="width: 61.3407%; height: 19px;"><code>Total de Pedidos = COUNT('Tabela - Pedidos'[ID Pedido])</code></td> </tr> <tr style="height: 19px;"> <td style="width: 13.1691%; height: 19px;">Veiculos Disponiveis</td> <td style="width: 61.3407%; height: 19px;"><code>Veiculos Disponiveis = CALCULATE(COUNT('Tabela - Ve&iacute;culos'[ID Vei&shy;culos]), FILTER('Tabela - Ve&iacute;culos', 'Tabela - Ve&iacute;culos'[Status] = "Disponi&shy;vel"))</code></td> </tr> <tr style="height: 19px;"> <td style="width: 13.1691%; height: 19px;">Veiculos Ocupados</td> <td style="width: 61.3407%; height: 19px;"><code>Veiculos Ocupados = CALCULATE(COUNT('Tabela - Ve&iacute;culos'[ID Vei&shy;culos]), FILTER('Tabela - Ve&iacute;culos', 'Tabela - Ve&iacute;culos'[Status] = "Ocupado"))</code></td> </tr> </tbody> </table> <p style="text-align: justify;">&nbsp;</p> <p style="text-align: justify;">An extra dashboard was created showing a Pareto table used to show accumulative gains by a rank of the most sold product to the less one. In the same page a bar chart showing the category with more sold items based on quantity.</p> <p style="text-align: justify;">A Card also shows the total sales and total of itens sold with a filter by year and month that the user can select when necessary.</p> <p style="text-align: justify;">

image</p>

<p style="text-align: justify;">All the ETL process was done in Power Query using the main functions such as : replace values, divide columns by delimiter, change columns type, rename columns, remove empty cells with no relevant information, cleaning spaces, deleting no relevant information. In this process 4 CSV tables was refined as shows bellow:</p> <p style="text-align: justify;">

image</p>

<p>Some relashionships was done between tables, such as the image bellow:</p>

image

<h3>🚀&nbsp; <a id="week02"</a>Week 02: Marketing Dashboard (AluraShop)</h3> <p>The Alura Shop have invested in publicity to get more visibility into the market and now its managers needs to know if the investment was really effective.</p> <p>Take a look in the online dashboard: <a href="https://bit.ly/2Y31t0k">https://bit.ly/2Y31t0k</a></p>

image

<p>My mission was elaborate an strategic marketing dashboard with the main purpose to monitor the campaign applied in July 2021. Some metrics was presented to the manage

Related Skills

View on GitHub
GitHub Stars9
CategoryDevelopment
Updated3y ago
Forks3

Languages

Jupyter Notebook

Security Score

50/100

Audited on Oct 4, 2022

No findings