Below is the current If statement that I am using--
Sample of file format:
A B ColumnC ColumnD ColumnE ColumnF ColumnG
62 Task 1 $500
63 Task 2 $850
64 Task 3 $900
What I am trying to do:
If ColumnC = "Yes" then "Recognize Revenue OVERTIME". If ColumnC="No" then move to ColumnD
If ColumnD ="Yes" then "Recognize Revenue OVERTIME". If ColumnD ="No" move to question ColumnE.
If Both ColumnE & ColumnF are "Yes" then Recognize Revenue Overtime. If either ColumnE or ColumnF ="No" the "Recognize Revenue at a POINT IN TIME"
This is the formula that works:
=IF(COUNTA(C62:F62)=0,"",IF(A62="","",IF(OR(C62="YES",D62="YES"),"Recognize Revenue OVERTIME ",IF(AND(E62="YES",F62="YES"),"Recognize Revenue OVERTIME","Recognize Revenue at a POINT IN TIME"))))
I would like to add an additional If statement as long as A62 is not blank then regardless of the answers in C62 thru F62 -- if G62= yes then populate with the text in that is in a cell in a different worksheet/tab (same workbook).
Is it possible to add the additional filter to the if statement? If so -- I am really struggling with how to do it. Does any one have any ideas?
Thanks in advance for your help!
Sample of file format:
A B ColumnC ColumnD ColumnE ColumnF ColumnG
62 Task 1 $500
63 Task 2 $850
64 Task 3 $900
What I am trying to do:
If ColumnC = "Yes" then "Recognize Revenue OVERTIME". If ColumnC="No" then move to ColumnD
If ColumnD ="Yes" then "Recognize Revenue OVERTIME". If ColumnD ="No" move to question ColumnE.
If Both ColumnE & ColumnF are "Yes" then Recognize Revenue Overtime. If either ColumnE or ColumnF ="No" the "Recognize Revenue at a POINT IN TIME"
This is the formula that works:
=IF(COUNTA(C62:F62)=0,"",IF(A62="","",IF(OR(C62="YES",D62="YES"),"Recognize Revenue OVERTIME ",IF(AND(E62="YES",F62="YES"),"Recognize Revenue OVERTIME","Recognize Revenue at a POINT IN TIME"))))
I would like to add an additional If statement as long as A62 is not blank then regardless of the answers in C62 thru F62 -- if G62= yes then populate with the text in that is in a cell in a different worksheet/tab (same workbook).
Is it possible to add the additional filter to the if statement? If so -- I am really struggling with how to do it. Does any one have any ideas?
Thanks in advance for your help!