Conditional formating if cell is a formula
I'm trying to have cells which value has been entered manually and cells that are the result of a formula differently, is there a way to do that?
google-sheets formulas conditional-formatting
migrated from superuser.com Jan 23 at 21:20
This question came from our site for computer enthusiasts and power users.
add a comment |
I'm trying to have cells which value has been entered manually and cells that are the result of a formula differently, is there a way to do that?
google-sheets formulas conditional-formatting
migrated from superuser.com Jan 23 at 21:20
This question came from our site for computer enthusiasts and power users.
add a comment |
I'm trying to have cells which value has been entered manually and cells that are the result of a formula differently, is there a way to do that?
google-sheets formulas conditional-formatting
I'm trying to have cells which value has been entered manually and cells that are the result of a formula differently, is there a way to do that?
google-sheets formulas conditional-formatting
google-sheets formulas conditional-formatting
edited Jan 24 at 14:18
serenesat
8,910102242
8,910102242
asked Jan 23 at 19:41
kaleidoscopkaleidoscop
1114
1114
migrated from superuser.com Jan 23 at 21:20
This question came from our site for computer enthusiasts and power users.
migrated from superuser.com Jan 23 at 21:20
This question came from our site for computer enthusiasts and power users.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
- custom formula:
=ISFORMULA(A1)
or:=IF(NOT(ISBLANK(A1)), (NOT(ISFORMULA(A1))))
Thanks for your answer, but I want to format all cells in the sheet. With this solution I can only make one column at a time (for instance by selecting column A and writing =ISFORMULA($A1)). For the whole sheet I wouldn't know what to put into the brackets.
– kaleidoscop
Jan 24 at 6:32
@kaleidoscop you will put the same but you will apply it to the whole range. eg instead ofA1:A
, type inA1:Z
– user0
Jan 24 at 12:13
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "34"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fwebapps.stackexchange.com%2fquestions%2f124515%2fconditional-formating-if-cell-is-a-formula%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
- custom formula:
=ISFORMULA(A1)
or:=IF(NOT(ISBLANK(A1)), (NOT(ISFORMULA(A1))))
Thanks for your answer, but I want to format all cells in the sheet. With this solution I can only make one column at a time (for instance by selecting column A and writing =ISFORMULA($A1)). For the whole sheet I wouldn't know what to put into the brackets.
– kaleidoscop
Jan 24 at 6:32
@kaleidoscop you will put the same but you will apply it to the whole range. eg instead ofA1:A
, type inA1:Z
– user0
Jan 24 at 12:13
add a comment |
- custom formula:
=ISFORMULA(A1)
or:=IF(NOT(ISBLANK(A1)), (NOT(ISFORMULA(A1))))
Thanks for your answer, but I want to format all cells in the sheet. With this solution I can only make one column at a time (for instance by selecting column A and writing =ISFORMULA($A1)). For the whole sheet I wouldn't know what to put into the brackets.
– kaleidoscop
Jan 24 at 6:32
@kaleidoscop you will put the same but you will apply it to the whole range. eg instead ofA1:A
, type inA1:Z
– user0
Jan 24 at 12:13
add a comment |
- custom formula:
=ISFORMULA(A1)
or:=IF(NOT(ISBLANK(A1)), (NOT(ISFORMULA(A1))))
- custom formula:
=ISFORMULA(A1)
or:=IF(NOT(ISBLANK(A1)), (NOT(ISFORMULA(A1))))
edited Jan 23 at 21:34
answered Jan 23 at 21:26
user0user0
9,52871432
9,52871432
Thanks for your answer, but I want to format all cells in the sheet. With this solution I can only make one column at a time (for instance by selecting column A and writing =ISFORMULA($A1)). For the whole sheet I wouldn't know what to put into the brackets.
– kaleidoscop
Jan 24 at 6:32
@kaleidoscop you will put the same but you will apply it to the whole range. eg instead ofA1:A
, type inA1:Z
– user0
Jan 24 at 12:13
add a comment |
Thanks for your answer, but I want to format all cells in the sheet. With this solution I can only make one column at a time (for instance by selecting column A and writing =ISFORMULA($A1)). For the whole sheet I wouldn't know what to put into the brackets.
– kaleidoscop
Jan 24 at 6:32
@kaleidoscop you will put the same but you will apply it to the whole range. eg instead ofA1:A
, type inA1:Z
– user0
Jan 24 at 12:13
Thanks for your answer, but I want to format all cells in the sheet. With this solution I can only make one column at a time (for instance by selecting column A and writing =ISFORMULA($A1)). For the whole sheet I wouldn't know what to put into the brackets.
– kaleidoscop
Jan 24 at 6:32
Thanks for your answer, but I want to format all cells in the sheet. With this solution I can only make one column at a time (for instance by selecting column A and writing =ISFORMULA($A1)). For the whole sheet I wouldn't know what to put into the brackets.
– kaleidoscop
Jan 24 at 6:32
@kaleidoscop you will put the same but you will apply it to the whole range. eg instead of
A1:A
, type in A1:Z
– user0
Jan 24 at 12:13
@kaleidoscop you will put the same but you will apply it to the whole range. eg instead of
A1:A
, type in A1:Z
– user0
Jan 24 at 12:13
add a comment |
Thanks for contributing an answer to Web Applications Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fwebapps.stackexchange.com%2fquestions%2f124515%2fconditional-formating-if-cell-is-a-formula%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown