HI cpould it be possible to indicate time hour and minute in a formulated column i have sample formula in here but its still unparsable i able to create and test with some helper columns but still didnt work
=IF([Case Type]@row = "Internal Service Issue", "ISI",
IF([Case Type]@row = "External Service Issue", "ESI",
IF([Case Type]@row = "Agency Debit Memo", "ADM",
IF([Case Type]@row = "General and Admin", "GEN", "")))) +
TEXT(MONTH(Created@row ), "00") +
TEXT(DAY(Created@row ), "00") +
RIGHT(YEAR(Created@row ), 2) +
TEXT(HOUR(Created@row ), "00") +
TEXT(MINUTE(Created@row ), "00")
Output should be like that
ADM0805250930
can anyone help me with this