I'm new to PowerQuery, so what I'm attempting is way over my head.
In the following table, I've identified the earliest duplicate JobID value (by sorting the timestamp row earliest to latest), and then have populated the identified earliest Estimate Values into column E. (Ultimately I need to know the value of the first estimate uploaded for each JobID so I can track the changes made later.)
formulas for D2 is =(COUNTIF($C$2:C2,C2)>=2)+0
for E2 is =IF(D2=0,B2,"")
How could I accomplish creating the Initial Estimate Value column with powerquery? or is it even possible?
In the following table, I've identified the earliest duplicate JobID value (by sorting the timestamp row earliest to latest), and then have populated the identified earliest Estimate Values into column E. (Ultimately I need to know the value of the first estimate uploaded for each JobID so I can track the changes made later.)
formulas for D2 is =(COUNTIF($C$2:C2,C2)>=2)+0
for E2 is =IF(D2=0,B2,"")
How could I accomplish creating the Initial Estimate Value column with powerquery? or is it even possible?