# Visualization Build in Minutes: Scatter Plot with Color Quadrants

**URL:** https://community.omni.co/t/visualization-build-in-minutes-scatter-plot-with-color-quadrants/362
**Category:** Visualizations
**Created:** [July 15, 2025, 9:28pm UTC](https://community.omni.co/t/visualization-build-in-minutes-scatter-plot-with-color-quadrants/362 "2025-07-15T21:28:54Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Becca\_Omni](https://avatars.discourse-cdn.com/v4/letter/b/7c8e57/32.png) [@Becca\_Omni](https://community.omni.co/u/Becca_Omni)
#### Post date: [July 15, 2025, 9:28pm UTC](https://community.omni.co/t/visualization-build-in-minutes-scatter-plot-with-color-quadrants/362/1 "2025-07-15T21:28:54Z")

</div>

If you’re wanting to easily show where data is existing within colorful, equal quadrants that are spaced based on the underlying data - below is a straightforward way to build this out of the box with Omni’s powerful visualization tools!

 ![Screenshot 2025-07-15 at 2.25.28 PM](https://canada1.discourse-cdn.com/flex004/uploads/omni/original/1X/8a2ce46640f56694821300bd62c53710e5e1ce54.png)

Video walkthrough of exactly how to do this all within Omni’s point and click interface!

https://www.loom.com/embed/3177daed177944dcb8a055151cae9ad1?sid=d7e240cd-9ffb-4cfb-b9ca-23df0f65ff18

If statements utilized for easy plug and play:

```auto
# Upper Left
=IF(A1 < AVERAGE(A:A), MAX(B:B) * 1.2, 0)

# Upper Right
=IF(A1 >= AVERAGE(A:A), MAX(B:B) * 1.2, 0)

# Lower Left
=IF(A1 < AVERAGE(A:A), MAX(B:B) * 0.6, 0)

# Lower Right
=IF(A1 >= AVERAGE(A:A), MAX(B:B) * 0.6, 0)

```
