Forum Discussion

Sri_vibhav_Ponnuru's avatar
Sri_vibhav_Ponnuru
Copper Contributor
Apr 10, 2024
Solved

Help setting up a formula for the assigned date column from previous dates

Good morning Excel community,    I need help in setting up a complex formula for the assigned date column. I have added an example of two requests in the below sheet.  A requisition number goes ...
  • HansVogelaar's avatar
    Apr 10, 2024

    Sri_vibhav_Ponnuru 

    Perhaps in row 2:

     

    =IF(COUNTIF($A$1:$A1,$A2)=0, $C2, MAXIFS($C$1:$C1, $A$1:$A1, $A2))

    or

    =LET(d, MAXIFS($C$1:$C1, $A$1:$A1, $A2), IF(d=0,$C2, d))

     

    Fill down.