Hello,
I have a 30 row spreadsheet. Data will be entered as an employee completes a job.
Column D is Job # (alphanumeric), and Column G is Amount
I have a total at the bottom of Job # that counts the number of claims if the cell is not blank.
I am trying to get the Amount to be 0, 20, or 25.
if the input cells in column D are blank then I want it to return a 0 for the Amount
If the job # count is 1-29, then I want it to return 20 for all Job #'s
If the job # Count is >= 30, then I want it to return 25 for ALL Job # (Jobs 1- infinity) .
The formula I have works fine until the count reaches 30, It does change the amount to 25 for all lines that have Job #'s but it also puts a 25 on the rows with no Job # (should be 0)
Here is what I have...
=IF(D32<0,0,(IF($D$42>=30,25,(IF(D32>0,20,0)))))
Thanks in advance for your help.
I have a 30 row spreadsheet. Data will be entered as an employee completes a job.
Column D is Job # (alphanumeric), and Column G is Amount
I have a total at the bottom of Job # that counts the number of claims if the cell is not blank.
I am trying to get the Amount to be 0, 20, or 25.
if the input cells in column D are blank then I want it to return a 0 for the Amount
If the job # count is 1-29, then I want it to return 20 for all Job #'s
If the job # Count is >= 30, then I want it to return 25 for ALL Job # (Jobs 1- infinity) .
The formula I have works fine until the count reaches 30, It does change the amount to 25 for all lines that have Job #'s but it also puts a 25 on the rows with no Job # (should be 0)
Here is what I have...
=IF(D32<0,0,(IF($D$42>=30,25,(IF(D32>0,20,0)))))
Thanks in advance for your help.