Looking at renaming/creating and then populating an entire column based on condition fulfilled for any row.
What I have:
Basically, I want to create a new column (Condition) where the entire column will be populated with "True" if any of the rows have the value "B", while if all the rows values' are "A", the entire Condition column will be "False"
Ideal Output:
| Name | Value | Condition |
| Tom | A | True |
| Sally | B | True |
| Nick | A | True |
Thanks in advance!