Formula Required

Johnboy28

Board Regular
Joined
Jun 22, 2013
Messages
198
Office Version
  1. 365
  2. 2019
  3. 2016
  4. 2013
  5. 2010
Platform
  1. Windows
Hi,

I'm after a formula that can calculate - If shift 1 equal zero it will return shift 2 and verse versa

Thank you
[TABLE="width: 248"]
<colgroup><col width="93" style="width: 70pt; mso-width-source: userset; mso-width-alt: 3401;"> <col width="130" style="width: 98pt; mso-width-source: userset; mso-width-alt: 4754;"> <col width="106" style="width: 80pt; mso-width-source: userset; mso-width-alt: 3876;"> <tbody>[TR]
[TD="width: 93, bgcolor: #D9D9D9"]Shift 1
[/TD]
[TD="width: 130, bgcolor: #D9D9D9"]Shift 2[/TD]
[TD="width: 106, bgcolor: #BDD7EE"]Combined
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]0[/TD]
[TD="bgcolor: transparent"]DAY[/TD]
[TD="bgcolor: #FCE4D6"] [/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]0[/TD]
[TD="bgcolor: transparent"]DAY
[/TD]
[TD="bgcolor: #FCE4D6"] [/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]0[/TD]
[TD="bgcolor: transparent"]DAY[/TD]
[TD="bgcolor: #FCE4D6"]
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]0[/TD]
[TD="bgcolor: transparent"]DAY[/TD]
[TD="bgcolor: #FCE4D6"] [/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]0[/TD]
[TD="bgcolor: transparent"]Night[/TD]
[TD="bgcolor: #FCE4D6"] [/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]0[/TD]
[TD="bgcolor: transparent"]Night[/TD]
[TD="bgcolor: #FCE4D6"] [/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]0[/TD]
[TD="bgcolor: transparent"]Night[/TD]
[TD="bgcolor: #FCE4D6"] [/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]0[/TD]
[TD="bgcolor: transparent"]Night[/TD]
[TD="bgcolor: #FCE4D6"] [/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]0[/TD]
[TD="bgcolor: transparent"]Night[/TD]
[TD="bgcolor: #FCE4D6"] [/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]0[/TD]
[TD="bgcolor: transparent"]Night[/TD]
[TD="bgcolor: #FCE4D6"] [/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]DAY[/TD]
[TD="bgcolor: transparent"]0[/TD]
[TD="bgcolor: #FCE4D6"] [/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]DAY[/TD]
[TD="bgcolor: transparent"]0[/TD]
[TD="bgcolor: #FCE4D6"] [/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]Night[/TD]
[TD="bgcolor: transparent"]0[/TD]
[TD="bgcolor: #FCE4D6"] [/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]Night[/TD]
[TD="bgcolor: transparent"]0[/TD]
[TD="bgcolor: #FCE4D6"] [/TD]
[/TR]
</tbody>[/TABLE]
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
This specifucally looks for zero value, if itsn't 0 then nothing will display
Code:
=IF(A2=0,B2,IF(B2=0,A2,""))
 
Upvote 0

Forum statistics

Threads
1,223,893
Messages
6,175,248
Members
452,623
Latest member
cliftonhandyman

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