Skip to content

Latest commit

 

History

History
143 lines (103 loc) · 4.1 KB

File metadata and controls

143 lines (103 loc) · 4.1 KB

Banking-Analysis-Power-BI-Dashboard

Homepage LoanAnalysis DepositAnalysis Summary

Introduction

The Banking Analysis Power BI Dashboard is a comprehensive tool designed to provide insights into various banking metrics. This dashboard is developed using four primary tables and several DAX queries to deliver a detailed analysis of banking relationships, client demographics, and financial metrics.

Data Tables

  1. Banking Relationship

This table captures the core relationship between clients and their banking services.

  • Columns
  1. BRID: Banking Relationship ID
  2. Banking Relationship: Type of banking relationship

  1. Clients - Banking

This table holds detailed information about clients and their banking contracts.

  • Columns
  1. Banking Contracts: Information on banking contracts
  2. BRID: Banking Relationship ID (Foreign Key)
  3. ClientID: Unique Identifier for clients
  4. Fee Structure: Fee structure associated with the banking services
  5. GenderID: Gender Identifier (Foreign Key)
  6. IAID: Investment Advisor ID (Foreign Key)
  7. Name: Client's name
  8. Nationality: Client's nationality
  9. Occupation: Client's occupation

  1. Gender

This table provides the gender details of clients.

  • Columns
  1. GenderID: Unique Identifier for gender
  2. Gender: Gender Description

  1. Gender

This table contains information about investment advisors.

  • Columns
  1. IAID: Unique Identifier for investment advisors
  2. Investment Advisor: Name of the investment advisor

Key Metrics and DAX Queries

The dashboard includes several important metrics calculated using DAX queries to provide comprehensive insights:

Saving Account Amount

SavingAccountAmount = SUM('Clients - Banking'[Savings Accounts])

Total Credit Card Amount

TotalCCAmount = SUM('Clients - Banking'[Credit Card Balance])

Total Deposit

TotalDeposit = SUM('Clients - Banking'[Bank Deposits])

Total Loan

TotalLoan = SUM('Clients - Banking'[Bank Loans])

Summation of Amounts

The following DAX queries calculate the summation of various financial accounts:

  • Credit Cards
TotalCreditCards = SUM('Clients - Banking'[Credit Card Balance])
  • Bank Deposits
TotalBankDeposits = SUM('Clients - Banking'[Bank Deposits])
  • Bank Loans
TotalBankLoans = SUM('Clients - Banking'[Bank Loans])
  • Business Lending
TotalBusinessLending = SUM('Clients - Banking'[Business Lending])
  • Checking Accounts
TotalCheckingAccounts = SUM('Clients - Banking'[Checking Accounts])
  • Credit Card Balance
TotalCreditCardBalance = SUM('Clients - Banking'[Credit Card Balance])
  • Estimated Income
TotalEstimatedIncome = SUM('Clients - Banking'[Estimated Income])
  • Foreign Currency Account
TotalForeignCurrencyAccount = SUM('Clients - Banking'[Foreign Currency Account])
  • Savings Accounts
TotalSavingsAccounts = SUM('Clients - Banking'[Savings Accounts])
  • Superannuation Savings
TotalSuperannuationSavings = SUM('Clients - Banking'[Superannuation Savings])

Usage

The dashboard provides an intuitive interface to explore and analyze banking data. Users can filter data based on various parameters such as client demographics, banking relationships, and financial metrics. The visualizations include charts, graphs, and tables to offer a clear and concise representation of the data.

Conclusion

The Banking Analysis Power BI Dashboard is a powerful tool for financial analysis and decision-making. By leveraging data from multiple sources and using DAX queries to calculate key metrics, it provides valuable insights into banking relationships, client demographics, and financial performance.

Author