Unfortunately it’s very difficult to help you without seeing the content of that column. There are several reason as to why this node could fail. Could you please provide an example of your data?
As I can see, the first cell is “0” and it will not be possible to convert it to a date dd/mm/yy. Please check all the values of the “Semana” column and if they are strings but like an integer number, you can use the “String Manipulation” node to convert the “0” (for example) to a 6-digit “000000” (you can use padLeft($Semana$, 6, “0”) or padRight($Semana$, 6, “0”) to do this) and then you can use the “String to Date&Time” node and instead to dd/MM/yy. You can write dd/MM/yy and then I hope you will get what you need.