The database I'm extracting from uses an 8 digit number in FixedDecimal format for the date - YYYYMMDD. If I were in Excel, I'd use the date function. Assuming the date is in cell A1, my formula would be =date(left(A1,4),mid(A1,5,2),right(A1,2)). So 20191231 would convert to 12/31/2019. How do I do this in Alteryx? It seems I can only convert from string to date, not number to date. Thank you.