Is there any way we can covert this to Altreyx, especially the max of Date field?
SELECT
ProducerFirst_Nm, ProducerLast_Nm,
MAX(AgencyCancel_Dt) as lastest_cancel_dt
FROM RPT_AGSL_APPS2.A_ProducerHierarchy_AsIs
where ProducerFirst_Nm like'Abi%' and ProducerLast_Nm='IM'
group by
ProducerFirst_Nm, ProducerLast_Nm