Have a 35,000+ row Excel worksheet with the data arranged similar to the following;
ProcCd---CostPerSvc-----CostPerSvcConsistent?
12345----10-------------Yes
12345----10-------------Yes
12345----10-------------Yes
24680----8--------------No
24680----8--------------No
24680----6--------------No
If I recall, the use of a sumproduct formula will allow me to input "Yes" or "No" in column C if the Cost Per Svc figure in column b is not consistent.
The use of the following IF statement is not working properly; =If(A5<>A6,"Yes",If(AND(A5=A6,B5=B6),"Yes","No"))
Any insight as to how I need to use a sumproduct to accomplish this?
ProcCd---CostPerSvc-----CostPerSvcConsistent?
12345----10-------------Yes
12345----10-------------Yes
12345----10-------------Yes
24680----8--------------No
24680----8--------------No
24680----6--------------No
If I recall, the use of a sumproduct formula will allow me to input "Yes" or "No" in column C if the Cost Per Svc figure in column b is not consistent.
The use of the following IF statement is not working properly; =If(A5<>A6,"Yes",If(AND(A5=A6,B5=B6),"Yes","No"))
Any insight as to how I need to use a sumproduct to accomplish this?