Forum Discussion
staspe2475
Aug 22, 2024Copper Contributor
Conditional Formatting with inside IF statement
I have an Conditional Formatting statement. Working fine. I need the following changed: =CONCATENATE("OWNER:",LOT!B8," ASSIGNED:",LOT!C8) I need the word "ASSIGNED" changed to "INTERRED" IF LOT...
- Aug 22, 2024is this "Conditional Formatting" or just a conditional statement in a cell?? As for the formula try:
=CONCATENATE("OWNER:",LOT!B8, IF(ISNUMBER(LOT!D8)," INTERRED:"," ASSIGNED:"),LOT!C8)
I used ISNUMBER but if you need to be more specific you could use a date range and require the Value to be inside that range.
m_tarler
Aug 22, 2024Bronze Contributor
is this "Conditional Formatting" or just a conditional statement in a cell?? As for the formula try:
=CONCATENATE("OWNER:",LOT!B8, IF(ISNUMBER(LOT!D8)," INTERRED:"," ASSIGNED:"),LOT!C8)
I used ISNUMBER but if you need to be more specific you could use a date range and require the Value to be inside that range.
=CONCATENATE("OWNER:",LOT!B8, IF(ISNUMBER(LOT!D8)," INTERRED:"," ASSIGNED:"),LOT!C8)
I used ISNUMBER but if you need to be more specific you could use a date range and require the Value to be inside that range.
- staspe2475Aug 22, 2024Copper Contributor
m_tarler thank you very much.. looks good so far.