<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Gideon Kiprono</title>
    <description>The latest articles on DEV Community by Gideon Kiprono (@gideon_kiprono_bfdedde010).</description>
    <link>https://dev.to/gideon_kiprono_bfdedde010</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3952212%2Faa7c3a6d-c93c-42bf-b03c-78a69896b986.jpg</url>
      <title>DEV Community: Gideon Kiprono</title>
      <link>https://dev.to/gideon_kiprono_bfdedde010</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/gideon_kiprono_bfdedde010"/>
    <language>en</language>
    <item>
      <title>Connecting Power BI to SQL databases : Local PostgreSQL and Aiven cloud</title>
      <dc:creator>Gideon Kiprono</dc:creator>
      <pubDate>Tue, 15 Sep 2026 16:54:13 +0000</pubDate>
      <link>https://dev.to/gideon_kiprono_bfdedde010/connecting-power-bi-to-sql-databases-local-postgresql-and-aiven-cloud-25ll</link>
      <guid>https://dev.to/gideon_kiprono_bfdedde010/connecting-power-bi-to-sql-databases-local-postgresql-and-aiven-cloud-25ll</guid>
      <description>&lt;h2&gt;
  
  
  Introduction
&lt;/h2&gt;

&lt;p&gt;Power BI supports connectivity to a wide range of data sources. This includes &lt;em&gt;files, relational databases, cloud platforms, web services and online applications&lt;/em&gt;. In this article, we will focus specifically on connecting Power BI to PostgreSQL database. This can be done either locally or using the cloud.&lt;br&gt;
A &lt;strong&gt;Database&lt;/strong&gt; is is a highly organized, centralized digital system designed to store, manage, secure, and instantly retrieve massive amounts of structured data.&lt;br&gt;
A database is managed by a software engine as known as the &lt;strong&gt;database management system (DBMS)&lt;/strong&gt;, like SQL Server or PostgreSQL. When Power BI asks for data, this engine does the heavy lifting: filtering, aggregating, and sorting millions of rows in milliseconds before sending just the necessary results back to Power BI.&lt;br&gt;
We will explore two scenarios: &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Connecting Power BI to a postgreSQL database hosted locally.&lt;/li&gt;
&lt;li&gt;Connecting Power BI to a cloud-hosted postgreSQL database using Aiven with SSL configuraion &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Before proceeding, it will be important to compare the two scenarios:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
  &lt;tbody&gt;
&lt;tr&gt;
    &lt;th&gt;Attribute&lt;/th&gt;
    &lt;th&gt;Local PostgreSQL&lt;/th&gt;
    &lt;th&gt;Cloud-Hosted PostgreSQL&lt;/th&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;Primary Location&lt;/td&gt;
    &lt;td&gt;Host machine (localhost or local IP)&lt;/td&gt;
    &lt;td&gt;Public cloud server instance&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt; 
  &lt;td&gt;Security Setup&lt;/td&gt;
  &lt;td&gt;Minimal setup; generally unencrypted over local networks&lt;/td&gt;
  &lt;td&gt;Strict Aiven Console CA certificate download and SSL configuration (sslmode=require)&lt;/td&gt;
  &lt;/tr&gt;
&lt;tr&gt; 
  &lt;td&gt;Accessibility&lt;/td&gt;
  &lt;td&gt;Limited to the local device or a restricted local network&lt;/td&gt;
  &lt;td&gt;Accessible anywhere over the internet&lt;/td&gt;
  &lt;/tr&gt;
&lt;tr&gt; 
  &lt;td&gt;Maintenance&lt;/td&gt;
  &lt;td&gt;User-managed (manual updates, scaling, backups)&lt;/td&gt;
  &lt;td&gt;Fully managed by Aiven (automated patches, easy hardware scaling)&lt;/td&gt;
  &lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Connecting Power BI to a local SQL database
&lt;/h2&gt;

&lt;p&gt;A local database is a database server installed and run entirely on your own local computer rather than a remote cloud or external server.&lt;/p&gt;

&lt;h3&gt;
  
  
  Process 1: Connecting  a new localhost database in DBeaver.
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Step 1&lt;/strong&gt;&lt;br&gt;
To get started with the process, we need to download all the tools that we need for the process. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The postgreSQL from our browser. Clink this link to download from the official site, &lt;a href="https://www.postgresql.org/download/" rel="noopener noreferrer"&gt;PostgreSQL download link&lt;/a&gt;.
We then install it to our computer.&lt;/li&gt;
&lt;li&gt;DBeaver which is a free, open-source database management tool recommended for personal projects. Used to manage and explore SQL databases like MySQL, MariaDB, PostgreSQL, SQLite, Apache Family, and more. We will download and install it in our local machine.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Step 2&lt;/strong&gt;&lt;br&gt;
We then open the DBeaver and create a new local database connection with PostgreSQL Database.&lt;br&gt;
When you open the debeaver, a the Home screen will open as shown  below will open:&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Flixvupg5huh2vvf8jmtn.JPG" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Flixvupg5huh2vvf8jmtn.JPG" alt="DBeaver home layout" width="799" height="428"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;To create a new database connection, we will press the CTRL + SHIFT + N  open or alternatively we can click the new connection wizard button &lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fyl12e4rzx3r7vzmqtfus.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fyl12e4rzx3r7vzmqtfus.png" alt="new connection button" width="20" height="20"&gt;&lt;/a&gt; in the toolbar. This will open a new window as shown below.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F70t90s9kucdzu2w241iv.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F70t90s9kucdzu2w241iv.png" alt="create a databse window" width="800" height="562"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 3&lt;/strong&gt;&lt;br&gt;
We will then click on the postgreSQL icon and it will take us to a new window to configure the connection. Since we are using localhost, we will not be required to change the configurations. We only need to input our password which we had set while installing our postgreSQL database.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F17wb4rksdbe7o8p0dkkh.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F17wb4rksdbe7o8p0dkkh.png" alt="connection configuration" width="800" height="584"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 4&lt;/strong&gt;&lt;br&gt;
After inputing our password, we will be required to test our connection by pressing the test connection button in the bottom left conner of the window pane. If the connection is sucessful, we will the press the finish button in the bottom right conner to complete the process.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fnh416vpkirrq6nuf8ad8.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fnh416vpkirrq6nuf8ad8.png" alt="Test connection and finish" width="800" height="586"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 5&lt;/strong&gt;&lt;br&gt;
In the home screen of DBeaver, a section will appear that will show our new connection as shown below.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F8817f326cmg4mwyat43w.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F8817f326cmg4mwyat43w.png" alt="Connection established" width="800" height="595"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Process 2: Importing data to our database
&lt;/h3&gt;

&lt;p&gt;After confirming that we already have our database connection working in DBeaver, we will need to import data to our database.&lt;br&gt;
This is an important step that we will need in the later stages.&lt;/p&gt;

&lt;p&gt;To import data to DBeaver, on the left side expand on databases &amp;gt; defaultdb &amp;gt; schemas &amp;gt; either create a new schema or use the public schema.&lt;br&gt;
We will first create a databse schema where now we will be able to put our data.&lt;br&gt;
To create a schema we will use the sql command: &lt;br&gt;
&lt;strong&gt;create schema schemaName;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fy6umtlqz0rvx1sei7jsv.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fy6umtlqz0rvx1sei7jsv.png" alt="Creating Schema" width="800" height="822"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Inside our schema, we will import our data from the browser.&lt;br&gt;
&lt;em&gt;Right click on your preffered schema and click import data&lt;/em&gt;.A window will po up as shown below.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fxgt2jmqfj45bwh7bvone.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fxgt2jmqfj45bwh7bvone.png" alt="dbeaver data import" width="799" height="477"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Go to -&amp;gt; Input file(s), Browse and select your data&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fiw4x3pr9p2ucn7vlvlxf.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fiw4x3pr9p2ucn7vlvlxf.png" alt="data importation" width="800" height="824"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;After selecting the file to be imported, you will click next until the end where you you will click proceed. This will complete the process of importation. Congratulations, you will now have completed the process of data importation. Your data will appear as shown below;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F74z80f87wv84mipbb90v.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F74z80f87wv84mipbb90v.png" alt="data importation complete" width="799" height="461"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Process 3: Getting data in power BI
&lt;/h3&gt;

&lt;p&gt;We will now open our Power BI desktop app, we will click on the blank remote to work with it.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F1812hqy1waldejlxg14o.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F1812hqy1waldejlxg14o.png" alt="bi home" width="800" height="556"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Expand the view in the Get data section as shown below.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F9slsfgjgjhqbogbk6avg.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F9slsfgjgjhqbogbk6avg.png" alt="get data source" width="751" height="739"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Click on &lt;strong&gt;more...&lt;/strong&gt; to expand our options to open a dialog box.&lt;br&gt;
In the dialog box, search for &lt;strong&gt;PostgreSQL&lt;/strong&gt; database under the Database category and click &lt;strong&gt;Connect&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F3gpmytofi0zv7sd54bag.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F3gpmytofi0zv7sd54bag.png" alt="choosing get data  source" width="800" height="578"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;After clicking connect, a dialog box will appear that will require our server and database name. We get this information from the time we connected our PostgreSQL database in DBeaver.&lt;br&gt;
Server: &lt;strong&gt;localhost:5432  / 127.0.0.1 : 5432&lt;/strong&gt; . &lt;br&gt;
(&lt;em&gt;Note: 5432 is our port number.&lt;/em&gt;)&lt;br&gt;
Database: &lt;strong&gt;postgres&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;After imputing the values, we proceed by clicking the &lt;strong&gt;ok buttton&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fepw9f1j02mbl1uncw9s2.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fepw9f1j02mbl1uncw9s2.png" alt="db config" width="800" height="427"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A new dialog box will appear that requires our User name and password.&lt;br&gt;
User name: &lt;strong&gt;postgres&lt;/strong&gt;&lt;br&gt;
Password: **** (requires the password you set while installing PostgreSql.)&lt;br&gt;
Proceed by clicking the button &lt;strong&gt;connect&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fo9jm0uid3t0rc4wxopkc.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fo9jm0uid3t0rc4wxopkc.png" alt="configure bi" width="796" height="510"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This wil take us to a new window where we can access all the tables we had already imported in DBeaver. Choose the tables you want to work on. if you need to clean you can using the &lt;strong&gt;transform&lt;/strong&gt; button which will direct you into power query where you will be able to clean your data. Otherwise, you can &lt;strong&gt;load&lt;/strong&gt; the tables directly so you can start working on them.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F0kjui4y54iqs6h7gfvg0.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F0kjui4y54iqs6h7gfvg0.png" alt="power bi localhost connection done" width="800" height="644"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Congratulations you have successfully connected Power BI to your localhost postgreSQL database!&lt;/p&gt;

&lt;p&gt;Let's now look into how you can connect to a cloud based &lt;/p&gt;

&lt;h2&gt;
  
  
  Connecting Power BI to a cloud-hosted postgreSQL database using Aiven with SSL configuraion
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;STEP 1: Setting up our aiven account.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What is Aiven.&lt;/strong&gt;&lt;br&gt;
Aiven is a fully managed cloud data platform that provides open-source technologies, such as PostgreSQL and Apache Kafka, as a service. It automates complex infrastructure tasks like setup, security patching, backups, and scaling so developers can focus strictly on building applications. The platform allows you to deploy these managed databases seamlessly across major cloud environments, including AWS, Google Cloud, and Microsoft Azure. By offering an accessible free tier, it makes it easy for developers to launch and manage a PostgreSQL database globally with minimal effort.&lt;/p&gt;

&lt;p&gt;To setup our aiven account,we will need to go to our browser an type &lt;a href="https://aiven.io/" rel="noopener noreferrer"&gt;aiven.io&lt;/a&gt;&lt;br&gt;
 When aiven.io opens, click on &lt;strong&gt;get building&lt;/strong&gt; to proceed to set up our aiven account.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fbmpmg0i32oamudwrv5nb.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fbmpmg0i32oamudwrv5nb.png" alt="aiven home" width="799" height="426"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;You will need to sign up into your account and then you login  to your account. You will be taken to a window that will require you to create a service.&lt;br&gt;
Choose &lt;strong&gt;PostgreSQL as your service&lt;/strong&gt; and click the &lt;strong&gt;create service&lt;/strong&gt; buttom in the bottom right of the window.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fnowh938qttpvty9kwzh7.JPG" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fnowh938qttpvty9kwzh7.JPG" alt="aiven console" width="799" height="406"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;You will be taken into the projects tabs where we can see our service details. This details are important to help us later when we open Power BI.&lt;br&gt;
&lt;strong&gt;Note&lt;/strong&gt;: Make sure the services builds until you see it's status changes to &lt;strong&gt;running&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fq1vkxo5gpf866n9xqdi5.JPG" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fq1vkxo5gpf866n9xqdi5.JPG" alt="aiven service build" width="800" height="432"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;STEP 2: Connecting our database in DBeaver.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;To establish a cloud database connection in dbeaver, we will start by opening dbeaver console.&lt;/p&gt;

&lt;p&gt;Using the &lt;strong&gt;new connection button&lt;/strong&gt; or the shortcut &lt;strong&gt;SHIFT + CTRL + N&lt;/strong&gt; to establish a open a dialog window.&lt;br&gt;
In the dialog box, choose &lt;strong&gt;postgreSQL&lt;/strong&gt; as our database and click &lt;strong&gt;next&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Figrwfewys61epeemmstj.JPG" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Figrwfewys61epeemmstj.JPG" alt="dabase choice" width="800" height="608"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Next, we configure the database based on the details we generated from the service we created in aiven.io&lt;/p&gt;

&lt;p&gt;Host: &lt;em&gt;according to the service you created in aiven.&lt;/em&gt;&lt;br&gt;
Port: &lt;em&gt;according to the service you created in aiven.&lt;/em&gt;&lt;br&gt;
Database: &lt;em&gt;defaultdb&lt;/em&gt;&lt;br&gt;
Username: &lt;em&gt;avnadmin&lt;/em&gt;&lt;br&gt;
Password: &lt;em&gt;according to the service you created in aiven.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fdu2pxno2r01ddt0seygp.JPG" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fdu2pxno2r01ddt0seygp.JPG" alt="configurations" width="799" height="581"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Test the connection by clicking on the button &lt;strong&gt;Test connection&lt;/strong&gt; in the bottom left corner then click &lt;strong&gt;finish&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fztsozkm0x8xrxr1f8c47.JPG" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fztsozkm0x8xrxr1f8c47.JPG" alt="test aiven conn" width="717" height="622"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;After finishing the action, you will be able to see a new connection in the General tab under connections.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F76nc5ti73p7ot244b5bw.JPG" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F76nc5ti73p7ot244b5bw.JPG" alt="general connection" width="622" height="582"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 43: CA cerificate download and Importation into our Trusted root crtificates&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The proceed without doing this step we will generate this error.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fkx6wzbchn5pqpxgjl2lm.JPG" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fkx6wzbchn5pqpxgjl2lm.JPG" alt="ca error" width="800" height="521"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;We need the Aiven PostgreSQL Service Certificate because Aiven enforces strict, mandatory SSL/TLS encryption for all database connections by default, and your computer needs to trust Aiven's identity to establish a secure link.&lt;br&gt;
Therefore we will need to download and import the CA certificate into our trusted root certifications. &lt;/p&gt;

&lt;p&gt;To proceed we will download the CA certificate in aiven.io.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Ffhcuow5dxw2y9dz9pq47.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Ffhcuow5dxw2y9dz9pq47.png" alt="va cert download" width="800" height="543"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;After dowloading the CA certificate, we will need to import the certifictae to our managed user certificates.&lt;/p&gt;

&lt;p&gt;Open the &lt;strong&gt;managed user certificate control panel&lt;/strong&gt; in your computer, and under the &lt;strong&gt;Trusted root certification&lt;/strong&gt;, &lt;strong&gt;right click on certificates , under all tasks click on import&lt;/strong&gt;, click &lt;strong&gt;next&lt;/strong&gt; then &lt;strong&gt;browse&lt;/strong&gt; the VA certificte you downloaded and proceed until you click the &lt;strong&gt;finish button&lt;/strong&gt;. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fmex0ikvkec7gvbzrfhlx.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fmex0ikvkec7gvbzrfhlx.png" alt="browse va cert" width="562" height="545"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;To confirm if the process is successful, a success message box will appear.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fhjusmzua64oyz8vlesje.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fhjusmzua64oyz8vlesje.png" alt="va import success" width="417" height="283"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;STEP 4: Connecting PowerBI to our aiven PostgreSQL database.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;We will now open our Power BI Desktop App, we will click on the &lt;strong&gt;blank report&lt;/strong&gt; to work with it.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F1812hqy1waldejlxg14o.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F1812hqy1waldejlxg14o.png" alt="bi home" width="800" height="556"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Expand the view in the **Get data **section as shown below.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F9slsfgjgjhqbogbk6avg.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F9slsfgjgjhqbogbk6avg.png" alt="get data source" width="751" height="739"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Click on &lt;strong&gt;more...&lt;/strong&gt; to expand our options to open a dialog box.&lt;br&gt;
In the dialog box, search for &lt;strong&gt;PostgreSQL&lt;/strong&gt; database under the Database category and click &lt;strong&gt;Connect&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F3gpmytofi0zv7sd54bag.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F3gpmytofi0zv7sd54bag.png" alt="choosing get data  source" width="800" height="578"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A dialog box will appear that will require us to input the server and Database box with values that we obtain while creating the service in aiven.io.&lt;br&gt;
Server: &lt;strong&gt;Host name : port number&lt;/strong&gt; (Depending on your service)&lt;br&gt;
Database: &lt;strong&gt;defaultdb&lt;/strong&gt;&lt;br&gt;
Press &lt;strong&gt;ok&lt;/strong&gt; to proceed.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F1nebbeb3375jtjxmtvw6.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F1nebbeb3375jtjxmtvw6.png" alt="server and database" width="799" height="585"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A new dialog box will appear that will require our username and password. Refer to our service conection details in aiven.ai.&lt;br&gt;
Username: &lt;strong&gt;avnadmin&lt;/strong&gt;&lt;br&gt;
Password: (&lt;em&gt;as provided in the service you created&lt;/em&gt;)&lt;br&gt;
Click &lt;strong&gt;connect&lt;/strong&gt; to to proceed&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F9f1t83npkfxbaqzrdlb4.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F9f1t83npkfxbaqzrdlb4.png" alt="bi aiven" width="800" height="560"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This will take us to a new window where we can access all the tables we had already imported in DBeaver. Choose the tables you want to work on. if you need to clean you can using the &lt;strong&gt;transform&lt;/strong&gt; button which will direct you into power query where you will be able to clean your data. Otherwise, you can &lt;strong&gt;load&lt;/strong&gt; the tables directly so you can start working on them.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F0kjui4y54iqs6h7gfvg0.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F0kjui4y54iqs6h7gfvg0.png" alt="power bi connection done" width="800" height="644"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Congratulations you have successfully connected Power BI to your aiven postgreSQL database!&lt;/p&gt;

&lt;p&gt;Hope you enjoyed this blog. Until next time.&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>database</category>
      <category>learning</category>
      <category>data</category>
    </item>
    <item>
      <title>HOW EXCEL IS USED IN REAL WORLD DATA ANALYSIS</title>
      <dc:creator>Gideon Kiprono</dc:creator>
      <pubDate>Sat, 06 Jun 2026 21:14:21 +0000</pubDate>
      <link>https://dev.to/gideon_kiprono_bfdedde010/how-excel-is-used-in-real-world-data-analysis-ef2</link>
      <guid>https://dev.to/gideon_kiprono_bfdedde010/how-excel-is-used-in-real-world-data-analysis-ef2</guid>
      <description>&lt;h1&gt;
  
  
  Introduction
&lt;/h1&gt;

&lt;h2&gt;
  
  
  What is Excel
&lt;/h2&gt;

&lt;p&gt;Excel is an important tool used in Data analysis. Excel enables a data analyst to ineteract with raw data. Raw data are always messy and require cleaning. This is now the work of excel to help in cleaning, organizing, analysing and visualizing data. &lt;/p&gt;

&lt;h2&gt;
  
  
  Ways Excel is used in real world data analysis
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Financial Modelling&lt;/strong&gt; . Excel is used in building financial models that can be used to predict the performance of a business. Excel formulas can be used to calculate profits, revenue and costs.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Auditing&lt;/strong&gt;.Auditors use excel in analysing financial records of an organization.They use it to check errors, detect any fraud and verify financial records.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Tasks Automation&lt;/strong&gt;. Excel can be used to automate repetitive tasks using formulas.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Data Visualization&lt;/strong&gt;. One can use excel to turn raw data into charts, graphs and dashboards for easier interpretation of the data.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Basic featuers of Excel
&lt;/h2&gt;

&lt;p&gt;Excel as a tool has many features that enable it bto function properly, this includes;&lt;/p&gt;

&lt;h4&gt;
  
  
  Excel Ribbon
&lt;/h4&gt;

&lt;p&gt;The Excel Ribbon is the toolbar located at the top of the excel interface that contains all commands and tools organized into tabs such as Home, Insert, Data, Formulas and View. Each tab groups related functions for easy access.&lt;/p&gt;

&lt;h4&gt;
  
  
  Data Entry and Formatting
&lt;/h4&gt;

&lt;p&gt;Excel allows users to enter different kinds of data such as texts, numbers and dates. Formatting tools are also used for organizing data to improve readability.&lt;/p&gt;

&lt;h4&gt;
  
  
  Filtering and Sorting
&lt;/h4&gt;

&lt;p&gt;Filtering helps in displaying specific data, while sorting arranges data in ascending or descending order. They help to in organizing large datasets.&lt;/p&gt;

&lt;h4&gt;
  
  
  Conditional Formating
&lt;/h4&gt;

&lt;p&gt;This is a special feature that helps in highlighting data based on specific rules, making it easier to identify trends and patterns.&lt;/p&gt;

&lt;h4&gt;
  
  
  Functions in Excel
&lt;/h4&gt;

&lt;p&gt;Excel has differnt kinds of functions that aid in data analysis;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;em&gt;Mathematical / Aggregate Functions&lt;/em&gt;: SUM(), AVERAGE(), MEDIAN(),MODE().&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;em&gt;Statistical Functions&lt;/em&gt;.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;em&gt;Text Functions&lt;/em&gt;.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;em&gt;Lookup Functions&lt;/em&gt;.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;em&gt;Date and time functions&lt;/em&gt;.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Final thoughts
&lt;/h2&gt;

&lt;p&gt;I am not going to lie, Before doing a deep dive into how excel works, my understanding was that excel was not that powerful in data analysis. To my suprise, I have come to know and appreciate excel as a powerful tool in the hands of any aspiring analyst. &lt;/p&gt;

</description>
      <category>beginners</category>
      <category>datascience</category>
      <category>data</category>
      <category>analytics</category>
    </item>
  </channel>
</rss>
