While applying conditional formatting in Google spreadsheet, I was wondering if it's possible to use a custom function that I created via script editor in the field 'custom formula is:'. Here is what I did:
Went to 'script editor' and typed my fn as follows:
function foo (param1, param2, param3) { if (condition to check) { ...some action; return true; } else { return false; } }
and saved.
In sheet, selected cells and opened 'conditional formatting' dialog
Created new rule and in the field 'custom formula is:' typed the following
=foo(param1, param2, param3)
Unfortunately, this didn't work.
Addition
Here is the sample sheet...
See the two tasks in there. My aim is to have the 'task title' automatically written inside of the yellow field (see the task in row 6 where I entered the value manually).
What I already tried was:
- Assign to every cell in range H5:BB7
following formula: =if(H$4=D5; B5; "")
This checks if the start date equals the cell date and displays the task title.
That does the trick, however the content of the cell with task title is clipped even if 'overflow' is on because the next cell is not empty.
...some action;
is. What does the cell with the custom formula state? Just stating: "this didn't work" does not provide enough information. Is there an error message? What is it? – Alan Wells