I am working on an Alteryx workflow to replicate SQL logic for calculating Days Revoked After Termination. The logic should compute:
RETURNS INT
AS
BEGIN
BEGIN
BEGIN
END
END
END;
(Start Date = Termination Date
End Date = Effective Date)
Expected behavior:
- If Termination Date = 2025-05-09 and Effective Date = 2025-05-10 →
TotalDays = 1, WeekendDays = 0, Result = 1
the workflow i have created has been attached here. Appreciate if anyone could help on this