Imagine you are a mid-sized real estate company grappling with operational inefficiencies, difficulties in identifying property trends, and challenges in predicting market demands.
Executives are inundated with data on property health, occupancy rates, tenant satisfaction, maintenance costs, and market trends, but they lack a streamlined and visual representation of this information.
Traditional spreadsheets and reports make it challenging to discern patterns, hindering quick and informed decision-making.
Enters Power BI.
Power BI, the most buzzed-around data visualization tool, enables organizations to consolidate data from various sources, transforming raw information into visually compelling and easily interpretable dashboards.
With Power BI, real estate organizations can:
Get back to the “Report View.”
Now, suppose, we would like to have a background other than white.
To change the background color:
- Visualize their entire property portfolio in one comprehensive dashboard.
- Integrate market data and predict future trends.
- Identify areas for improvement and cost-saving opportunities.
- Access a comprehensive overview of the financial performance of each property.
- Have a holistic and real-time understanding of their property management and real estate operations for better decision-making.
- Learn how to efficiently load diverse datasets into Power BI. We will be using an Excel datasheet, though. We have a real estate sample dataset that we will be using to elaborate on the steps.
- Clean, reshape, and aggregate data for a clearer understanding.
- Creating visually stunning and interactive dashboards using Power BI.
- Select the “Condition” column --> Click on “Conditional Column” in the Add Column tab.
- Add Conditional Column window pops up.
- Write “Condition Status” in the “New column name.”
- In the “Column Name” field, select “Condition” from the drop-down menu as we want to put conditions in that field. The Operator field will be set to “equals” by default. Add 1 to the “Value” field, and “Exceptionally good” to the “Output” field.
- Click on “Add Clause.”
- In the Else If field, “Condition” will appear by default. The Operator field will be set to “equals” by default. Add 2 to the “Value” field, and “Favorable” to the “Output” field.
- Now, since we are using just three values, 0,1, and 2, we will not add any more clauses to this. So, in the Else field, write “Not good.”
- Click “OK.
- Select the “yr_built” column --> Custom Column from the Add new column tab. A popup “Custom Column” appears as shown below.
- In the “New column name,” write “Interval” as the column represents the interval between the two columns. You can choose the most suitable name.
- Now, to know the interval between the year the property was built, and it was renovated, you need to subtract the year the property was built from the year of renovation. So, in the Custom column formula, you need to add the formulas that were just mentioned in the earlier statement. From the Available columns pane, select the column “yr_renovated” and click “Insert” then use “-” symbol from the keyboard, and again select “yr_built” and click “Insert.” Now, click OK.
- Select “Interval” --> Select “Conditional Column” from the Add Column tab.
- As we want to know whether a property is renovated or not, we will name the new column “Renovation Status.” Because we want to apply this condition on the interval field, select “Interval” from the drop-down menu.
- Now, getting back to the dataset, you will find that the “Interval” column has many negative values. The reason is some of the fields in the yr_renovation column are 0, representing that these properties were not renovated. So, to apply a condition, we will use the Operator as “Greater than” and the Value as “0.” If the Interval is > 0, then the Output will be “Renovated,” else “Not Renovated.”
- Click “OK.” You get the following column:
- Rename the dataset as “Fact table.” This can be done in the Properties pane.
- Right-click on “Fact table” in the Queries pane --> Select Duplicate--> Rename to the first field of the dataset or relevant to it. For example, the first field is property location. We will label it as “Property Location.”
- Now, we want only the first column, which is the property location. So, select the column, right-click on it, and select “Remove other columns.”
- Now remove duplicates from the column. For that, right-click on the property location column and select remove duplicates.
- Add an index to the Property location column. To add, select the column, “Index column” from the Add Column tab, and select “From 0.” The index table will appear to the right of the property location column. Just drag it to the left of the property location column.
Unleash the true potential of your business intelligence by optimizing data relationships, crafting robust measures, and creating dynamic visuals.
- Click on “Format Page” icon.
- Click on “Canvas Background.”
- Choose Color from the drop-down menu.
- Set Transparency at 0%.
- Check the pane is reflected with the chosen color.
- Select “Insert” from the ribbon.
- Go to “Shapes” and select a shape of your choice. We have used a trapezoid.
- Go to “Format” whether you want to change the shape's color, rotate it, add borders, or shadow. In our example, we have changed the color, rotated the trapezoid at 180 degrees, added borders and changed the border color, added a shadow effect, and rounded the corners. We have added text, rotated it, and changed the font, color, and size.
- Go to Home --> New Measure
- Now, we need to calculate the total number of properties in the fact table. So, we will use the following syntax: Total Properties = COUNTROWS(‘Fact Table’), and press enter.
- Now calculate the total properties with the waterfront. For that, again click on “New Measure”
- 4. Enter the following syntax: With Waterfront = CALCULATE([Total Properties],'Fact Table'[Waterfront_ID]=1) and press enter.
- Now create another measure without Waterfront = CALCULATE([Total Properties],'Fact Table'[Waterfront_ID]=0) and press enter. All these tables will be created and you can find them in the data pane.
- Now, select the right visualization. As these will represent numbers, select card.
- Select the row you want the card to display. For example, we want to display first the properties with waterfront. So, check the checkbox with the waterfront measure created in the data pane. Your visualization is ready. Adjust the box and edit as per the visual requirements explained before this.