Forum Discussion
Eric Reames
Feb 05, 2018Copper Contributor
Pay sheet function
I am working on a balance sheet type of workbook and wondering if there is a function or conditional format that can help me with the following:
Trying to set it up if account is showed as paid then it it would automatically highlight the entire row green and if it is not paid that it would it would be red.
I am not going to be using it for budget purposes, just as a tracking of the payment status of the accounts.
- Willy LauSteel Contributor
Create 2 Conditional Formatting Rules
Step
- Create a name using Name Manger, IsPaidRow
= Sheet1!$F2 <> ""
This is for easier reference in future
- Select A2
- Click Conditional Formatting
- Manage Rule
- New Rule
- "Use a formula to determine which cells to format"
- Type
= IsPaidRow
- Apply fill background color with green format or any format you want for paid record
- Click ok
- Still in Conditional Formatting Rule Manager, type the following reference in "Applies to"
=$A$2:$G$3
- Click New Rule
- "Use a formula to determine which cells to format"
- Type
=Not(IsPaidRow)
- Apply fill background color with red format or any format you want for paid record
- Click ok
- Still in Conditional Formatting Rule Manager, type the following reference in "Applies to"
=$A$2:$G$3
- Click ok to close the Conditional Formatting Rule Manager
Check if this fit your need.
- Create a name using Name Manger, IsPaidRow