I have a date in a format
I want to Replace T with space and Z with no space in one go hence trying to use Contains as below:
if contains([creationdate],("T" or "Z")) then
replace([creationdate],"T"," ") and replace([creationdate],"Z","")
else [Creationdate]
endif
but it doesnt seems to be right, Can I request for help