Syntax to ignore formula

Jar888

Board Regular
Joined
Jan 15, 2022
Messages
61
Office Version
  1. 2016
Platform
  1. Windows
Got a bit of a question. Trying to sort out some spreadsheets at work, and I'm somewhat figured most of the formula's out. But the sheets are rolling on from each other.

As seen below, O11 grabs the information from the previous sheet, but because there's a formula in O, the formula in S and U think that cell O is not blank. Is there a workaround to this? Let me know if I need to explain myself more.

00. 54 Workshop Handover Template Rev1.xlsx
OPQRSTU
11 #VALUE!OUT
12
13
NS (1)
Cell Formulas
RangeFormula
O11O11=IF('DS (1)'!U11="OUT","18:30","")
S11S11=IF((AND(ISBLANK(Q11),O11>0)),TEXT("01/02/1900 6:30"-O11,"h:mm")*24,TEXT((IF(Q11<O11,Q11+1,Q11)-O11),"h:mm")*24)
U11U11=IF((AND(ISBLANK(Q11),O11>0)),"OUT","GTG")
Cells with Conditional Formatting
CellConditionCell FormatStop If True
U11,U14,U17,U20,U29,U38,U47,U56,U23,U32,U41,U50,U26,U35,U44,U53Cell Valuecontains "G2G"textNO
U11,U14,U17,U20,U29,U38,U47,U56,U23,U32,U41,U50,U26,U35,U44,U53Cell Valuecontains "OUT"textNO
U11,U14,U17,U20,U29,U38,U47,U56,U23,U32,U41,U50,U26,U35,U44,U53Cell Valuecontains "Out"textNO
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
Sorry, I figured it out myself. I just needed to re-arrange the formula and the IF functions.

If anyone is interested in the answer;

00. 54 Workshop Handover Template Rev1.xlsx
OPQRSTU
11 0GTG
12
13
DS (2)
Cell Formulas
RangeFormula
O11O11=IF('NS (1)'!U11="OUT","6:30","")
S11S11=IF((ISBLANK(Q11)),IF(O11="","0",TEXT("18:30"-O11,"h:mm")*24),TEXT(Q11-O11,"h:mm")*24)
U11U11=IF(ISBLANK(Q11),IF(O11="","GTG","OUT"),"GTG")
Cells with Conditional Formatting
CellConditionCell FormatStop If True
U11,U14,U17,U20,U23,U26,U29,U32,U35,U38,U41,U44,U47,U50,U53,U56Cell Valuecontains "G2G"textNO
U11,U14,U17,U20,U23,U26,U29,U32,U35,U38,U41,U44,U47,U50,U53,U56Cell Valuecontains "OUT"textNO
U11,U14,U17,U20,U23,U26,U29,U32,U35,U38,U41,U44,U47,U50,U53,U56Cell Valuecontains "Out"textNO
 
Upvote 0
Solution

Forum statistics

Threads
1,214,653
Messages
6,120,751
Members
448,989
Latest member
mariah3

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