I'm very new at using Mathematica and it's not my Job. It's just something I like.
data = MapAt[DateString[{#, {"Day", "/", "Month", "/", "Year"}}] &, Import["D:\\Sheet 1.tsv"][[3 ;;, {1, 2}]] , {All, 1}] I have found out that DateString[{#, {"Day", "/", "Month", "/", "Year"}}] seems to be a function can I define it in a variable and reuse? It would be clearer for me.
Should I write f[x] := DateString[{#, {"Day", "/", "Month", "/", "Year"}}] ?
I'm a c# developer and we would call it "Refactor\Introduce a new variable". May I do the same also for Import["D:\Sheet 1.tsv"]? I guess I can but then what is [[3 ;;, {1, 2}]]?
This are the data which of the example, https://docs.google.com/spreadsheets/d/1dmv_C2_J7uG8zIhxe5aYZbg79MREI8ePsFJTStSKEeE/edit#gid=0
ClearAll[f]; f[x] := DateString[{x, {"Day", "/", "Month", "/", "Year"}}]orClearAll[f]; f= DateString[{#, {"Day", "/", "Month", "/", "Year"}}]&;$\endgroup$[[or]]and hitF1to get the related documentation page. Similarly, highlight;;and hitF1, highlight&and hitF1etc. $\endgroup$