简体   繁体   中英

Check columns, if one is bigger or equal to the adjacent cell in column A, style it differently

I have 10 columns with price data in.

Column A has my product SKU

Column B - has the cost price of a product

The other columns have other prices in them.

Link: https://docs.google.com/spreadsheets/d/17PLI_d_05uYnzOt2yL4ZQA3XB89rIz9vQJnIOBidMz8/edit?usp=sharing

I want to go through each cell in a row and see if any of the prices listed are less than, or equal to, the cost price in Cell A.

How would I write this in Google Sheets?

I believe the correct way to do this is the following formula:

=$D2:$K2<=$B2

To check if there is any price below (or equal) to a certain value, you could check the minimum price and compare that. So use the MIN function and compare that with the value at B2 .

=MIN(D2:K2)<= B2

工作示例


You have posted a solution but you are comparing a range with a value, and for me it does not work.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM