Connecting cells and flipping the data between two values

Frankwest

New Member
Joined
Aug 17, 2019
Messages
1
I'm trying to make a row of true and false values which will effect each other and i'm not sure how to go about it.

so for example if i had a row like this:
TrueFalseFalseTrueTrueFalse

<tbody>
</tbody>

and i changed the first cell (True) to False the result should be this:

FalseTrueTrueFalseFalseTrue

<tbody>
</tbody>

I'm fairly new to excel so this will be a big help, thank you.

sorry if the explanation and grammar is slightly off i have had next to no sleep.
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
If your data starts in cell A1, then try

In cell B1 Enter =A1=FALSE
In cell C1 Enter =B1
In cell D1 Enter =C1=FALSE
In cell E1 Enter =D1
In cell F1 Enter =E1=FALSE
 
Last edited:
Upvote 0
Is this what you want?

Results

A
BCDEF
1TRUE
FALSEFALSETRUETRUEFALSE
2FALSE
TRUETRUEFALSEFALSETRUE

<tbody>
</tbody>

Formulae

ABCDEF
1TRUE=NOT(A1)=NOT(A1)=A1=A1=NOT(A1)
2FALSE=NOT(A2)=NOT(A2)=A2=A2=NOT(A2)

<colgroup><col style="width: 25pxpx"><col><col><col><col><col><col></colgroup><thead>
</thead><tbody>
</tbody>





 
Upvote 0

Forum statistics

Threads
1,214,522
Messages
6,120,020
Members
448,939
Latest member
Leon Leenders

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top