core.noscript.text
Click in the JOIN GROUP button in Home to follow our news and attend our events!
Hi All,
Please help me alteryx tool:-
Thanks,
Hi @Neeta_Latwal ,
In a formula tool, try:
DATETIMEDIFF([Date],"1899-12-30","days")
If you subtract the numbers you provided from the [Date] column, they all give "1899-12-30' as the result, which is your start date. So just reverse engineer that
If this is the Excel type format that you are looking for then
TOSTRING(DATETIMEDIFF([datefield],'1900-01-01','days'))+TOSTRING([numberIDField])
can help.