Forum Discussion
Eric Reames
Feb 04, 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...
Willy Lau
Feb 04, 2018Steel 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.