根據另一個單元格的值更改單元格的背景 (Changing background of a cell based on the value of another)


問題描述

根據另一個單元格的值更改單元格的背景 (Changing background of a cell based on the value of another)

我需要根據不同列和行中的值(1、2、3、4 或 5)更改單元格的背景。例如,如果 cel A4 == 4,則單元格 C19 將具有紅色背景。


參考解法

方法 1:

Have you tried something with Apps Script?

A code like this can give you ideas for their solution:

/* CODE FOR DEMONSTRATION PURPOSES */
function onEdit(e) {
  if (e.range.getA1Notation() === 'C4')
    if (e.value === '4') e.source.getRange('C19').setBackground('red');
    else e.source.getRange('C19').setBackground('');
}

方法 2:

Your requirement seems very modest and I'm guessing you would like other colours or more complex criteria but I think the image 'says it all' as far as red fill in C19 if A4=4:

SO19735346 example

This is accessed via Format, Conditional Formatting...

The bottom right‑hand corner may be relevant. I'm using New Google Sheets that has much more powerful CF facilities than its predecessor.

(by Bobby Mwchiquitopnuts)

參考文件

  1. Changing background of a cell based on the value of another (CC BY‑SA 3.0/4.0)

#google-sheets #gs-conditional-formatting






相關問題

通過 JavaScript 客戶端 API Auth 使用 Google 電子表格作為“已驗證”數據源的 Google 可視化 API (Google Visualization API using Google Spreadsheet as "Authenticated" Data Source via JavaScript Client API Auth)

根據另一個單元格的值更改單元格的背景 (Changing background of a cell based on the value of another)

如何從 Google 表格中的字符串中刪除一組數字 (how to remove a set of digits from string in Google Sheets)

如何將 3 個不同的工作表與 Query(importrange) 結合起來? (How to combine 3 different sheets with Query(importrange)?)

如何在 Google 表格中使用 ArrayFormula 計算總數和唯一性(基於 2 個單獨的列)? (How to count totals and uniques (based on 2 separate columns) using ArrayFormula in Google Sheets?)

如何根據查看文檔的 Google 帳戶對 Google 表格中的列進行編程,使其從用戶輸入中灰顯 (How to program a column in Google sheets to be grayed out from user input depending on the Google account viewing the document)

單擊單元格時的谷歌應用程序腳本分配功能 (google application script assign function when cell is clicked)

如何將日期後的第一個值從一個選項卡拉到谷歌表格中的另一個選項卡中? (How to pull the first value after a date from one tab into another in google sheets?)

一次在多行上的 OnEdit 時間戳 (OnEdit timestamp on several rows at one time)

Google Sheets Script,如何創建工作表標籤的新鬆散對象 (Google Sheets Script, how to create a NEW loose object of a sheet tab)

Google Apps 腳本:將格式規則應用於特定工作表 (Google Apps Script: Apply formatting rule to a spesific sheet)

找到更接近的值並複制它 (Finding a closer value and copying it)







留言討論