SOLVED

Second IF statement

Copper Contributor

Andy_Kelly_0-1642852639259.png

Keeping the original formula in the Minimum Hours column (shown in the input bar). I need to reduce the Minimum Hours by 30% if 'Yes' is selected in the Retrain column. Is that possible? 

2 Replies
best response confirmed by VI_Migration (Silver Contributor)
Solution

@Andy_Kelly 

=IF($F3="","",VLOOKUP($F3,'Sign Off Hours'!$A:$B,2)*IF($I3="Yes",0.7,1))

that works a treat, thank you very much Hans!
1 best response

Accepted Solutions
best response confirmed by VI_Migration (Silver Contributor)
Solution

@Andy_Kelly 

=IF($F3="","",VLOOKUP($F3,'Sign Off Hours'!$A:$B,2)*IF($I3="Yes",0.7,1))

View solution in original post