Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello Folks,
I need to find and set the minimum date of a field to a value.
LET vCustomerStartDate = ...
I've tried something like
LET vCustomerStartDate = MIN([Order Ship Date])
but that value is always null. I keep feeling like I need something like Peek, FieldValue and Min, but many of those are based on the load order of the records.
Any help is greatly appreciated.
try rangemin(date)
No dice,
LET vCustomerStartDate2 = RangeMin([Order Ship Date]) ;
Still gives me <NULL>.
Tab: Load Min([Order Ship Date]) as MinOSD Resident XXXX; LET vCustomerStartDate = Peek('MinOSD', -1, 'Tab'); Drop table Tab;