sensitivity analysis in rental project, in spain
gonzalo rental project
the Owner of some properties needs to know, how much his project of renting apartments per day on Airbnb can vary in variations of the price per day, so he can see if even in the worst case scenario the project is still profitable.
To create a dashboard that provides insights to see the diference in net profit versus price variation
This will help the owner make informed decisions about which apartments still profitable in the worst case.
As the Owner, I want to use a dashboard that analyses net profits in diference price.
This dashboard should allow me to identify the top performing apartments based on change in circumstancess.
We need data on the apartments
total of apartments
To understand what it should contain, we need to figure out what questions we need the dashboard to answer:

| Tool | Purpose |
|---|---|
| Excel | Exploring the data |
| Power BI | Visualizing the data via interactive dashboards |
| GitHub | Hosting the project documentation and version control |
This is the stage where you have a scan of what’s in the data, errors, inconcsistencies, bugs, weird and corrupted characters etc
There are at least 4 columns that contain the data we need for this analysis, which signals we have everything we need from the file without needing to contact the client for any more data.

INGRESOS TOTALES =
SUM(Tabla1[Ingresos])
RETURN totalNetProfit

Ajusted Net Profit =
SUM{'Tabla1','Tabla1'[Dias]*'Tabla1'[Ventas/Dia (Unidades)]*('Tabla1'[Precio/DPTO+'Ajuste Precio'[Ajuste Precio Value])}
RETURN AjustedNetPrice

Difference = 'Tabla1'[totalNetProfit]-'Tabla1'[AjustedNetPrice]
RETURN totalDifference

