I have this google sheet with many formulas. The purpose of this sheet to record all Walkins for an institute on daily basis with their relevant status that are FU, DFU or Sales. Example format:
Row no: Col 1 | Col 2 | Col 3 | Col 4 | Col 5
1:Date | Name | Phone | Status | Remarks
2:01/06/15 | Client1 | 1001 | FU | will come again
3:01/06/15 | Client2 | 2002 | DFU | Not joining
4:02/06/15 | Client3 | 3003 | Sales | Enrolled
5:03/06/15 | Client1 | 1001 | Sales | repeat walkin, enrolled today
As soon as Client1 Status set to "Sales", any duplicate entry [which actually checks on Col 3 (Phone)] changes to "Status - Sales" automatically. So Row 2 now becomes:
2:01/06/15 | Client1 | 1001 | Sales | will come again, enrolled 03/06/15
There is another formula calculating the total Sales [=COUNTIF(D:D,"=Sales")] however it is also calculating the duplicate entries. As in above example the total number of Sales should be 1, but it is resulting 2. I tried all possible functions (or atleast upto what I am aware of) but just not getting there.
Any advice without the use of scripts/ macros.