Show latest date

M

McClellan

So I have a spreadsheet that looks like the following

Column A is customers
Row A is dates (365 of them)
Each day I log which customers I contact by placing a T, VM, E, or M in the appropriate row and column.

I column B, I want to show the latest date that the customer was contacted. In column C I want to show how they were contacted (T, VM, E, or M).

I tried some if, then combinations, but am not having much luck. Can anyone assist? I am grateful as always for this group and for its very intelligent members.
 
D

Don Guillett

So I have a spreadsheet that looks like the following



Column A is customers

Row A is dates (365 of them)

Each day I log which customers I contact by placing a T, VM, E, or M in the appropriate row and column.



I column B, I want to show the latest date that the customer was contacted. In column C I want to show how they were contacted (T, VM, E, or M).



I tried some if, then combinations, but am not having much luck. Can anyone assist? I am grateful as always for this group and for its very intelligent members.

Hard to see your layout. provide a file
 
D

Don Guillett

So I have a spreadsheet that looks like the following



Column A is customers

Row A is dates (365 of them)

Each day I log which customers I contact by placing a T, VM, E, or M in the appropriate row and column.



I column B, I want to show the latest date that the customer was contacted. In column C I want to show how they were contacted (T, VM, E, or M).



I tried some if, then combinations, but am not having much luck. Can anyone assist? I am grateful as always for this group and for its very intelligent members.
 
D

Don Guillett

So I have a spreadsheet that looks like the following



Column A is customers

Row A is dates (365 of them)

Each day I log which customers I contact by placing a T, VM, E, or M in the appropriate row and column.



I column B, I want to show the latest date that the customer was contacted. In column C I want to show how they were contacted (T, VM, E, or M).



I tried some if, then combinations, but am not having much luck. Can anyone assist? I am grateful as always for this group and for its very intelligent members.


=IF(G5="","",INDEX($M$4:$S$4,1,MATCH("zzzzzz",M5:S5)))
=IF(ISNA(MATCH("zzzz",M5:S5)),"",PROPER(INDEX($M5:$S5,1,MATCH("zzzz",$M5:$S5))))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top