Reputation: 21
I'm trying to set up a formula in Google Sheets that applies to the whole sheet. the formula would compare the dollar amount from column E to the dollar amount in column N. If it is equal I want to highlight the row. (column N is a formula that is the sum of several other columns)
I've tried several other formulas I've found online but none seem to be working.
Upvotes: 2
Views: 71
Reputation: 993
You'll need a Custom Formula, to set up the comparison and lock it to those two columns.
=$E1=$N1
That custom formula will return true
whenever E=N, and so apply the formatting to a given row. The dollar signs lock it so it only but always uses those columns. The 1 digits are not locked with dollar signs, so Sheets automatically changes it when checking each row for an E=N match.
Upvotes: 1