Home / Blog / Jobs / Implementing Real-time Financial Dashboards with Power BI

Implementing Real-time Financial Dashboards with Power BI

  • November 06, 2024
  • 3003
  • 58
Author Images

Meet the Author : Mr. Bharani Kumar

Bharani Kumar Depuru is a well known IT personality from Hyderabad. He is the Founder and Director of AiSPRY and 360DigiTMG. Bharani Kumar is an IIT and ISB alumni with more than 18+ years of experience, he held prominent positions in the IT elites like HSBC, ITC Infotech, Infosys, and Deloitte. He is a prevalent IT consultant specializing in Industrial Revolution 4.0 implementation, Data Analytics practice setup, Artificial Intelligence, Big Data Analytics, Industrial IoT, Business Intelligence and Business Management. Bharani Kumar is also the chief trainer at 360DigiTMG with more than Ten years of experience and has been making the IT transition journey easy for his students. 360DigiTMG is at the forefront of delivering quality education, thereby bridging the gap between academia and industry.

Read More >

Introduction

In ASEAN's fast-changing financial services sector, organizations are increasingly recognizing the critical role of real-time data insights for enhanced decision-making and gaining a competitive edge. With the rapid evolution of fintech, regulatory landscapes, and consumer expectations, financial institutions must adapt quickly and efficiently. This is where tools like Power BI come into play.

Power BI, Microsoft's powerful business analytics platform, empowers financial professionals to harness their data effectively. By creating dynamic dashboards that showcase real-time information, users can monitor key performance indicators (KPIs), track financial metrics, and respond swiftly to market changes. For instance, real-time insights can help investment firms adjust their portfolios based on market fluctuations, while banks can enhance their risk management strategies by analyzing transaction data as it happens.

This guide offers ASEAN professionals a comprehensive, step-by-step approach to developing real-time financial dashboards with Power BI. It emphasizes crucial integration techniques, such as connecting to various data sources like ERP systems, CRM platforms, and external financial data providers through APIs. Leveraging advanced DAX (Data Analysis Expressions) functions is essential for performing complex calculations and aggregating data, allowing users to gain deeper insights into their financial performance.

To provide practical relevance, the guide includes examples from leading financial markets within ASEAN, particularly Singapore and Indonesia. Singapore, with its robust regulatory framework and advanced fintech ecosystem, serves as a prime example of how real-time analytics can optimize operations in asset management and banking. Conversely, Indonesia, with its rapidly growing financial technology sector, illustrates how organizations can leverage data-driven insights to reach underserved markets and enhance customer experiences.

In summary, the integration of real-time data analytics through Power BI is becoming a game-changer in ASEAN’s financial sector, driving innovation and fostering a data-centric culture that is crucial for navigating the complexities of today's financial landscape. By adopting these technologies and methodologies, financial professionals can position their organizations for sustained success in an increasingly competitive environment.

1. Understanding Real-Time Financial Dashboards

A real-time financial dashboard provides up-to-the-minute insights into key financial metrics, such as cash flow, revenue, expenses, and profit margins. The benefits include:

• Immediate Insights:

Gain the ability to swiftly respond to market changes and evolving financial conditions. Real-time data allows organizations to stay ahead of trends, quickly identifying opportunities and threats as they arise. This agility is crucial in today's fast-paced financial landscape, enabling teams to pivot strategies, adjust investments, and implement proactive measures that can significantly impact profitability.

• Enhanced Decision-Making:

Leverage real-time data to drive strategic decision-making across all levels of the organization. By utilizing live analytics, financial professionals can base their choices on the most current information, reducing reliance on historical data that may no longer be relevant. This ensures that decisions are not only informed but also timely, fostering a culture of data-driven strategy that can lead to more effective resource allocation and risk management.

• Improved Performance Monitoring:

Monitor key performance indicators (KPIs) against industry benchmarks in real-time, allowing for immediate visibility into organizational performance. This continuous oversight enables teams to detect discrepancies early and take corrective actions swiftly. By integrating real-time monitoring into daily operations, organizations can foster a proactive approach to performance management, ensuring that targets are met and operational efficiencies are maximized. This dynamic feedback loop empowers teams to stay aligned with strategic goals and enhances overall organizational accountability.

2. Step 1: Setting Up Power BI

Before diving into dashboard creation, ensure you have the following prerequisites:

1. Power BI Desktop

• Download and Install: Make sure to download and install Power BI Desktop from the official website. This is where you'll design and create your reports and dashboards.

2. Power BI Service

• Cloud Service: After creating your reports, utilize Power BI Service to share dashboards with your team and stakeholders. This platform allows for collaboration, real-time data updates, and mobile access.

3. Data Source Access

• Necessary Permissions: Ensure that you have the required permissions to access financial data sources, such as databases, APIs, or Excel files. Proper access rights are essential for seamless data integration and analysis.

Enhancing User Experience with DAX

DAX (Data Analysis Expressions) can significantly enhance user experience and knowledge in Power BI dashboards. Here’s how:

1. Custom Calculations

DAX allows you to create custom measures and calculated columns that provide deeper insights into your data. For example:

• Measure for Year-to-Date Sales:

YTD_Sales = TOTALYTD(SUM(Sales[SalesAmount]),
Sales[OrderDate])

• This measure calculates the total sales from the beginning of the year to the current date, allowing users to quickly assess performance over time.

Data Science

2. Time Intelligence

DAX’s time intelligence functions enable users to analyze data across different periods. For instance:

• Quarterly Growth Rate:

Growth_Rate = (SUM(Sales[SalesAmount]) -
CALCULATE(SUM(Sales[SalesAmount]),
PREVIOUSQUARTER(Sales[OrderDate]))) /
CALCULATE(SUM(Sales[SalesAmount]),
PREVIOUSQUARTER(Sales[OrderDate]))

• This calculation shows growth compared to the previous quarter, helping users understand trends and make informed decisions.

Data Science

3. Dynamic Filtering

Using DAX, you can create measures that respond to user selections in real-time, enhancing interactivity. For example:

• Dynamic Sales Total Based on Region:

Total_Sales_Region = CALCULATE(SUM(Sales[SalesAmount]),
Sales[Region] = SELECTEDVALUE(Regions[RegionName]))

• This allows users to view sales totals filtered by the selected region, fostering a more tailored analysis experience.

Data Science

4. Improved Visualizations

DAX enables users to create more meaningful visualizations by allowing them to plot calculated measures alongside raw data. For example, you can display:

• Sales vs. Target: Create a measure to calculate the percentage of sales against the target:

Sales_vs_Target = DIVIDE(SUM(Sales[SalesAmount]),
[Target_Sales])

• Visualizing this measure against actual sales can help stakeholders quickly gauge performance against expectations.

Data Science

Summary

By leveraging DAX in Power BI, you can create more informative and interactive dashboards. Users benefit from custom calculations, time intelligence features, dynamic filtering, and enhanced visualizations, ultimately leading to better decision-making and a deeper understanding of financial data.

3. Step 2: Integrating APIs for Real-Time Data

Many financial services rely on external data sources to provide up-to-date information. Utilizing APIs can streamline this process, allowing organizations to harness a wealth of real-time data to inform their decision-making. Here are some examples of open-source APIs, including Yahoo Finance, and how their data can be integrated into Power BI dashboards.

Example 1: Yahoo Finance API

• Details: The Yahoo Finance API provides access to a wide range of financial data, including stock quotes, historical market data, company information, and financial news.

Integration in Power BI: By connecting to the Yahoo Finance API, financial professionals can pull in real-time stock prices and historical performance metrics. This can be used to create dashboards that track portfolio performance, analyze stock trends, and compare the performance of different assets.

Example 2: Alpha Vantage API

• Details: Alpha Vantage offers APIs for real-time and historical stock market data, including technical indicators, currency exchange rates, and cryptocurrency data.

Integration in Power BI: Using the Alpha Vantage API, users can create visualizations that display real-time stock prices, moving averages, and other technical indicators. This can help traders make informed decisions based on current market conditions.

Example 3: IEX Cloud API

• Details: The IEX Cloud API provides a range of financial data, including stock prices, market data, and company financials.

Integration in Power BI: By connecting to IEX Cloud, financial analysts can access real-time price quotes and historical data for a wide range of stocks. This data can be incorporated into Power BI dashboards to monitor market trends and assess investment strategies.

Example 4: CoinGecko API

• Details: CoinGecko offers a comprehensive API for cryptocurrency data, including real-time prices, trading volume, and market capitalization for thousands of cryptocurrencies.

• Integration in Power BI: By integrating the CoinGecko API, users can visualize real-time cryptocurrency prices and trends. This is especially useful for organizations involved in digital asset trading or investment, allowing them to monitor market fluctuations and make data-driven trading decisions.

Example 5: Open Exchange Rates API

• Details: This API provides real-time and historical foreign exchange rates for over 170 currencies.

• Integration in Power BI: By connecting to the Open Exchange Rates API, financial professionals can display real-time currency conversion rates and trends. This information is crucial for businesses operating internationally, helping them manage currency risks and make informed financial decisions.

Connecting to the API

1. Identify the API: For example, a bank in Singapore may offer an API to access real-time transaction data.

2. Connect to the API: Use Power Query in Power BI to connect to the API. This involves:

• Retrieving the API endpoint URL.

• Entering any necessary authentication credentials (such as API keys).

• Formatting the request to pull specific data (e.g., transaction history, account balances).

• Importing the data into Power BI for analysis and visualization.

let
  Source =
wpJson.Document(Web.Contents("https://api.examplebank.com/transactions"
),
  Transactions = Source[transactions]
in
  Transactions

By integrating these APIs, financial professionals can create comprehensive dashboards that reflect real-time data, enabling better insights and more informed decision-making.

Transform Data: Clean and structure the data for analysis using Power Query Editor.

Example: Streaming Data from a Financial Market API

For firms in Indonesia, accessing stock market data can provide critical insights:

1. Connect to a Market Data API: Use an API like Alpha Vantage to pull real-time stock data.

let
  Source =
Json.Document(Web.Contents("https://www.alphavantage.co/query?function=TIME_SERIES_INTRADAY&symbol=XYZ&interval=1min&apikey=YOUR_API_KEY")),
  StockData = Source["Time Series (1min)"]
in
  StockData

2. Set Up a Streaming Dataset: In Power BI Service, create a streaming dataset to visualize incoming data in real-time.

4. Step 3: Creating Real-Time Dashboards

Building Visuals

Once your data sources are connected, the next step is to build your dashboard.

a. Choose Relevant Visuals: Use cards for KPIs, line charts for trends, and tables for detailed data.

1. KPI Cards

Purpose: Display key performance indicators (KPIs) at a glance.

Visualization: Use cards to showcase metrics like Total Revenue, Year-to-Date Profit, or Customer Count.

• Implementation

â—¦ In Power BI, select the Card visual.

â—¦ Drag your measure (e.g., Total Revenue) to the Values field.

â—¦ Format the card with colors to indicate performance (green for positive, red for negative).

Example:

Data Science

2. Line Charts

Purpose: Show trends over time, such as revenue growth or stock price fluctuations.

Visualization: A line chart can depict sales over months or quarters, allowing users to see patterns and trends.

• Implementation

â—¦ Choose the Line Chart visual.

â—¦ Place the time dimension (e.g., Order Date) on the X-axis.

â—¦ Add measures like Total Sales to the Y-axis.

â—¦ Use different lines to represent various products or regions.

Example:

Data Science

3. Bar or Column Charts

Purpose: Compare different categories, such as sales by region or product.

Visualization: A bar chart could visualize sales by product category, making it easy to identify top performers.

• Implementation

â—¦ Select the Clustered Bar Chart visual.

â—¦ Drag the Product Category to the Axis field.

â—¦ Add Total Sales to the Values field.

â—¦ Sort by sales to highlight the best-performing categories.

Example:

Data Science

4. Tables

Purpose: Provide detailed data for in-depth analysis.

Visualization: A table can display transaction details such as date, amount, and merchant for each transaction.

• Implementation

â—¦ Choose the Table visual.

â—¦ Add columns like Transaction Date, Amount, and Merchant.

â—¦ Use conditional formatting to highlight significant amounts or negative values.

Example:

Data Science

5. Pie or Donut Charts

Purpose: Show parts of a whole, such as market share by product.

Visualization: A pie chart can display the percentage of total sales contributed by each product category.

• Implementation

â—¦ Select the Pie Chart visual.

â—¦ Add Product Category to the Legend field and Total Sales to the Values field.

â—¦ Format the chart with colors for each segment to enhance visibility.

Example:

Data Science

Summary

Using a combination of these visuals—KPI cards for quick insights, line charts for trends, bar charts for comparisons, tables for detailed data, and pie charts for parts of a whole—can create a comprehensive and user-friendly dashboard in Power BI. Each visualization serves a unique purpose, helping stakeholders easily interpret and analyze financial data to make informed decisions.

For actual implementation, you can use the Power BI interface to drag and drop fields onto these visualizations based on your dataset.

b. Apply Filters and Slicers: Allow users to drill down into specific data segments.

5. Understanding DAX Functions in Power BI

Data Science

Data Analysis Expressions (DAX) is a powerful formula language used in Power BI, Excel, and other Microsoft products. It enables users to create custom calculations and data aggregations in a simple and efficient manner. Understanding DAX functions is essential for building advanced analytics and visualizations. Here’s an overview of key DAX functions, their applications, and examples relevant to financial services.

1. Basic DAX Functions

a. SUM

Calculates the total of a column.

Example:

TotalRevenue = SUM(Sales[Revenue])

This formula computes the total revenue from the Sales table.

b. AVERAGE

Calculates the average of a column.

Example:

AverageRevenue = AVERAGE(Sales[Revenue])

This function provides the average revenue from sales.

2. Logical Functions

a. IF

Evaluates a condition and returns one value for TRUE and another for FALSE.

Example:

SalesStatus = IF(SUM(Sales[Revenue]) > 100000, "High", "Low")

This formula categorizes total revenue as "High" or "Low."

3. Time Intelligence Functions

a. TOTALYTD

Calculates the year-to-date total for a specified measure.

Example:

YTDRevenue = TOTALYTD(SUM(Sales[Revenue]), Sales[Date])

This calculates the total revenue from the beginning of the year to the current date.

b. SAMEPERIODLASTYEAR

Returns a table that contains the same period in the previous year.

Example:

LastYearRevenue = CALCULATE(SUM(Sales[Revenue]),
SAMEPERIODLASTYEAR(Sales[Date]))

This formula allows for year-over-year comparisons.

4. Filter Functions

a. CALCULATE

Changes the context in which data is evaluated, allowing for more complex calculations.

Example:

HighValueSales = CALCULATE(SUM(Sales[Revenue]), Sales[Value] > 1000)

This sums the revenue for sales where the value exceeds 1000.

b. FILTER

Returns a table that has been filtered based on a condition.

Example:

FilteredSales = FILTER(Sales, Sales[Region] = "Singapore")

This creates a filtered table of sales records specific to Singapore.

5. Aggregation Functions

a. SUMX

Evaluates an expression for each row in a table and then sums the result.

Example:

TotalProfit = SUMX(Sales, Sales[Revenue] - Sales[Cost])

This calculates total profit by subtracting costs from revenue for each sale.

b. AVERAGEX

Calculates the average of an expression evaluated over a table.

Example:

AverageProfitPerSale = AVERAGEX(Sales, Sales[Revenue] - Sales[Cost])

This computes the average profit per sale.

6. Advanced DAX Functions

Utilize DAX (Data Analysis Expressions) for advanced calculations.

Example: Calculating Moving Averages

In a financial dashboard, understanding trends is crucial. Use DAX to calculate moving averages:

MovingAverage = AVERAGEX(
  DATESINPERIOD('Transactions'[Date], LASTDATE('Transactions'[Date]), -30,
DAY),
  'Transactions'[Amount]
)

Example: Year-to-Date Calculation

To provide insights on year-to-date performance:

YTD_Sales = TOTALYTD(SUM('Sales'[Amount]), 'Sales'[Date])k

7. Real-Time Refresh

Ensuring Real-Time Data Refresh in Power BI

To maximize the effectiveness of your Power BI dashboard, it’s crucial to ensure that it refreshes in real-time or near real-time. This capability enables stakeholders to access the most current information, facilitating timely decision-making. Here’s how to set up real-time data refresh and keep your visuals dynamically updated.

1. Scheduled Refresh in Power BI Service

What is a Scheduled Refresh?

Scheduled refresh allows you to set specific times for your dataset to update automatically. This is especially useful for data sources that don’t change minute-by-minute but still require regular updates.

How to Set Up Scheduled Refresh:

1. Publish Your Report: First, you need to publish your report from Power BI Desktop to Power BI Service.

2. Navigate to Dataset Settings:

• Go to the Power BI Service and find your report.

• Click on the More options (three dots) next to your dataset and select Settings.

3. Configure Scheduled Refresh:

• Under the Dataset settings, find the Scheduled refresh section.

• Turn on the Keep data updated option.

• Set the Frequency (daily, weekly) and the Time you want the refresh to occur.

• You can also specify multiple refresh times throughout the day to ensure data is as current as possible.

Example Use Case: A financial dashboard displaying daily trading volumes may be set to refresh every hour during market hours to ensure that users have access to the most relevant data.

2. Using DirectQuery for Real-Time Data

What is DirectQuery?

DirectQuery allows you to connect to your data source in real-time, meaning that any interaction with the dashboard fetches the latest data directly from the source without needing to refresh the entire dataset.

How to Set Up DirectQuery:

1. Choose Data Source: When connecting to your data source (e.g., SQL Server, Oracle), select DirectQuery instead of Import during the connection setup.

2. Design Your Report: Build your visualizations as usual, but now they will reflect real-time data directly from the source.

3. Limitations: Be aware that DirectQuery may have limitations on the types of transformations and measures you can apply compared to imported data.

Example Use Case: A stock market dashboard displaying live stock prices can benefit from DirectQuery to ensure users see real-time updates without manual refreshes.

3. Push Data for Dynamic Updates

What is Push Data?

Push data is a method where data is sent to Power BI from an external source, allowing your dashboards to update instantly as new data becomes available.

How to Set Up Push Data:

1. Create a Streaming Dataset: In Power BI Service, create a streaming dataset.

• Go to the Power BI Service and select Create > Streaming dataset.

• Choose to create a dataset that uses API, Azure Stream Analytics, or PubNub.

2. Push Data to the Dataset: Use Power BI REST API or other supported services to push data into your dataset.

• For example, you can set up a script that sends new sales transactions to Power BI every time a transaction occurs.

3. Visualize the Streaming Data: Create visuals based on your streaming dataset. Power BI will automatically update these visuals as new data comes in.

Example Use Case: A financial dashboard that tracks real-time transaction data for a retail chain can push transaction updates as they happen, allowing decision-makers to see the latest sales figures instantly.

Summary

Ensuring that your Power BI dashboard refreshes in real-time is essential for providing up-to-date insights to stakeholders. By setting up scheduled refreshes, utilizing DirectQuery, or implementing push data techniques, you can create a dynamic dashboard that enhances the user experience and drives informed decision-making. This approach not only keeps your data current but also builds confidence in the insights provided by your dashboard, enabling teams to react swiftly to changes in the financial landscape.

8. Step 4: Sharing and Collaboration

Once the dashboard is ready, sharing insights with stakeholders is essential:

• Publish to Power BI Service: Make the dashboard accessible to your team.

• Use Power BI Apps: Package your dashboard into an app for a tailored user experience.

• Implement Row-Level Security: Control data access based on user roles to ensure data privacy.

9. Conclusion

Implementing real-time financial dashboards in Power BI is a vital resource for financial services in the ASEAN region. By integrating APIs, utilizing real-time data streams, and applying advanced DAX functions, professionals can develop dashboards that not only capture the current financial situation but also inform strategic decision-making. As the financial landscape evolves, the capability to leverage real-time insights will be a crucial factor for success in this competitive market.

10. Transforming Financial Reporting with DAX in Power BI

DAX (Data Analysis Expressions) is a powerful language that enhances analytical capabilities in Power BI, allowing financial professionals to create more insightful and dynamic reports. Here are some visualizations that demonstrate how DAX can improve your analytical capabilities, along with descriptions of how each visualization leverages DAX to deliver valuable insights.

1. KPI Cards with DAX Measures

Visualization: Use KPI cards to showcase critical financial metrics like Year-to-Date Profit and Return on Investment (ROI).

DAX Example:

YTD_Profit = TOTALYTD(SUM(Transactions[Profit]),
Transactions[TransactionDate])

ROI = DIVIDE(SUM(Transactions[Profit]),
SUM(Transactions[Investment]), 0)

Impact: These cards provide at-a-glance insights into performance, enabling stakeholders to quickly assess whether financial goals are being met.

Data Science

2. Trend Analysis with Line Charts

Visualization: Create line charts to visualize trends over time, such as monthly revenue growth or customer acquisition rates.

DAX Example:

Monthly_Revenue = SUM(Transactions[Revenue])

Impact: This allows users to spot trends and patterns in revenue, helping them make informed forecasts and strategic decisions based on historical performance.

Data Science

3. Bar Charts for Comparative Analysis

Visualization: Use bar charts to compare different product categories or regions, displaying sales performance side by side.

DAX Example:

Total_Sales_By_Category = SUM(Sales[SalesAmount])

Impact: This comparison helps identify which products or regions are performing well and which may need attention, facilitating targeted marketing or operational strategies.

Data Science

4. Dynamic Filtering with Slicers

Visualization: Implement slicers to enable users to filter data dynamically based on criteria like time period or product category.

DAX Example:

Sales_Year = YEAR(Transactions[TransactionDate])

Impact: By using DAX measures in conjunction with slicers, users can analyze data from different angles, enhancing their understanding of performance across various dimensions.

Data Science

5. Pie or Donut Charts for Market Share

Visualization: Use pie or donut charts to visualize market share by product or service category.

DAX Example:

Market_Share = DIVIDE(SUM(Sales[SalesAmount]),
CALCULATE(SUM(Sales[SalesAmount]), ALL(Sales)), 0)

Impact: This visualization helps stakeholders understand the distribution of sales across different categories, allowing for strategic adjustments in focus or resource allocation.

Data Science

Summary

DAX plays a vital role in enhancing the analytical capabilities of Power BI dashboards. By creating custom measures, implementing dynamic filtering, and visualizing data in a variety of formats, DAX enables financial professionals to derive deeper insights and make more informed decisions.

So, what are you waiting for? Ready to transform your financial reporting? Start exploring Power BI today and elevate your data visualization capabilities to meet the demands of the fast-paced financial services industry in ASEAN!

So, what are you waiting for?

Harness the power of DAX in your financial dashboards, and see how it can revolutionize your reporting and analytics. Explore Power BI now and unlock the potential of your data!

Data Science Placement Success Story

Data Science Training Institutes in Other Locations

Agra, Ahmedabad, Amritsar, Anand, Anantapur, Bangalore, Bhopal, Bhubaneswar, Chengalpattu, Chennai, Cochin, Dehradun, Malaysia, Dombivli, Durgapur, Ernakulam, Erode, Gandhinagar, Ghaziabad, Gorakhpur, Gwalior, Hebbal, Hyderabad, Jabalpur, Jalandhar, Jammu, Jamshedpur, Jodhpur, Khammam, Kolhapur, Kothrud, Ludhiana, Madurai, Meerut, Mohali, Moradabad, Noida, Pimpri, Pondicherry, Pune, Rajkot, Ranchi, Rohtak, Roorkee, Rourkela, Shimla, Shimoga, Siliguri, Srinagar, Thane, Thiruvananthapuram, Tiruchchirappalli, Trichur, Udaipur, Yelahanka, Andhra Pradesh, Anna Nagar, Bhilai, Borivali, Calicut, Chandigarh, Chromepet, Coimbatore, Dilsukhnagar, ECIL, Faridabad, Greater Warangal, Guduvanchery, Guntur, Gurgaon, Guwahati, Hoodi, Indore, Jaipur, Kalaburagi, Kanpur, Kharadi, Kochi, Kolkata, Kompally, Lucknow, Mangalore, Mumbai, Mysore, Nagpur, Nashik, Navi Mumbai, Patna, Porur, Raipur, Salem, Surat, Thoraipakkam, Trichy, Uppal, Vadodara, Varanasi, Vijayawada, Visakhapatnam, Tirunelveli, Aurangabad

Data Analyst Courses in Other Locations

ECIL, Jaipur, Pune, Gurgaon, Salem, Surat, Agra, Ahmedabad, Amritsar, Anand, Anantapur, Andhra Pradesh, Anna Nagar, Aurangabad, Bhilai, Bhopal, Bhubaneswar, Borivali, Calicut, Cochin, Chengalpattu , Dehradun, Dombivli, Durgapur, Ernakulam, Erode, Gandhinagar, Ghaziabad, Gorakhpur, Guduvanchery, Gwalior, Hebbal, Hoodi , Indore, Jabalpur, Jaipur, Jalandhar, Jammu, Jamshedpur, Jodhpur, Kanpur, Khammam, Kochi, Kolhapur, Kolkata, Kothrud, Ludhiana, Madurai, Mangalore, Meerut, Mohali, Moradabad, Pimpri, Pondicherry, Porur, Rajkot, Ranchi, Rohtak, Roorkee, Rourkela, Shimla, Shimoga, Siliguri, Srinagar, Thoraipakkam , Tiruchirappalli, Tirunelveli, Trichur, Trichy, Udaipur, Vijayawada, Vizag, Warangal, Chennai, Coimbatore, Delhi, Dilsukhnagar, Hyderabad, Kalyan, Nagpur, Noida, Thane, Thiruvananthapuram, Uppal, Kompally, Bangalore, Chandigarh, Chromepet, Faridabad, Guntur, Guwahati, Kharadi, Lucknow, Mumbai, Mysore, Nashik, Navi Mumbai, Patna, Pune, Raipur, Vadodara, Varanasi, Yelahanka

 

Navigate to Address

360DigiTMG - Data Science, IR 4.0, AI, Machine Learning Training in Malaysia

Level 16, 1 Sentral, Jalan Stesen Sentral 5, Kuala Lumpur Sentral, 50470 Kuala Lumpur, Wilayah Persekutuan Kuala Lumpur, Malaysia

+60 19-383 1378

Get Direction: Data Science Course

Read
Success Stories
Make an Enquiry