Every analyst and professional encounters situations where they need to compare data from multiple sources and know when it gets too hot or too cold. For such scenarios, you can create a simple yet powerful thermometer in Excel to keep track of data fluctuations. In this guide, we'll walk you through an easy-to-follow process to create a data-driven thermometer in Excel.

Before delving into the steps, ensure you have a basic understanding of Excel and familiarize yourself with common functions like IF, IFS, and VLOOKUP. Also, bear in mind that your Excel version may affect the availability of certain features.

Setting Up the Thermometer
The first step involves creating the thermometer's body, which is just a simple representation using bullet points or a visual design. For this guide, we'll use bullet points to illustrate the thermometer scale.

Select the cell where you'd like to start your thermometer (e.g., A1) and type your desired scale, such as "Cold" → "Warm" → "Hot". Then, press Enter after each point and be sure to give your thermometer some space by leaving a few cells empty between each point.
Defining Your Data Range

After creating the thermometer scale, define the data you want to track. This could be sales figures, temperature changes, or any other numeric data. For instance, if your data spans from A12 to A50, ensure it's well-organized, and there are no empty cells in the range.
An important note is to ensure the minimum and maximum values in your data range make sense for your thermometer scale. If your data implies a warmer range than what you initially set, you may need to adjust your thermometer scale accordingly.
Applying the IF Function

The IF function is your core tool for creating a simple data thermometer. It tests a condition and returns one value if the condition is True and another value if it's False. In our context, we'll use it to determine which thermometer point matches the data's current state.
In a new cell (e.g., B1), use the IF function to compare the first data cell (A12) with your defined temperature ranges. Assuming "Cold" spans 0-20, "Warm" spans 21-40, and "Hot" spans 41 and above, the formula would look like this: IF(A12<=20;"Cold",IF(A12<=40;"Warm","Hot"))
Applying the IFS Function (Optional)

If your Excel version supports the IFS function, you can streamline the process. IFS tests multiple conditions and returns the corresponding value only when the first condition is False. This can make your formula cleaner and easier to manage. The equivalent IFS formula for the above IF condition is: IFS(A12<=20, "Cold", A12<=40, "Warm", TRUE, "Hot")
This function checks if the data cell value is less than or equal to 20, and if so, it returns "Cold". It then checks if the value is less than or equal to 40 and returns "Warm" if True. If neither condition is met, it defaults to "Hot".








Dragging Your Formula Down
With your first formula set, you can now drag it down to apply the same logic to the rest of your data. In Excel, simply click on the small box in the bottom-right corner of cell B1 (fill handle) and drag it down to the last cell in your data range (e.g., B50). This will auto-generate the formula for each data cell, matching your thermometer with the appropriate scales based on your data.
Be sure to adjust your thermometer scale and data range as needed to accurately represent the data you want to track. Additionally, monitor your data's fluctuations and make informed decisions based on your Excel thermometer.
And there you have it! You've just created a simple yet powerful data-driven thermometer in Excel. This tool can help you visualize your data and make more informed decisions. Don't forget to refine and customize your thermometer to accurately represent your unique data range."