Skip to content

Instantly share code, notes, and snippets.

@jpigla
Last active October 23, 2020 13:05
Show Gist options
  • Select an option

  • Save jpigla/7f6c89cdce937483d260e91523ba38e5 to your computer and use it in GitHub Desktop.

Select an option

Save jpigla/7f6c89cdce937483d260e91523ba38e5 to your computer and use it in GitHub Desktop.

Excel Tipps & Tricks


Gibt den letzten Teil eines URL-Pfades aus (alles nach dem letzten "/")

=RECHTS(A2;LÄNGE(A2)-FINDEN("@";WECHSELN(A2;"/";"@";LÄNGE(A2)-LÄNGE(WECHSELN(A2;"/";"")));1))

Konvertiert von UNIX Timestamp zu lesbarem Datum

=DATUM(1970;1;1)+(LINKS([ZELLE];10)/86400)

Die CID aus der URL extrahieren

=LINKS(RECHTS(A2;LÄNGE(A2)-FINDEN("@";WECHSELN(A2;"-";"@";LÄNGE(A2)-LÄNGE(WECHSELN(A2;"-";"")));1));LÄNGE(RECHTS(A2;LÄNGE(A2)-FINDEN("@";WECHSELN(A2;"-";"@";LÄNGE(A2)-LÄNGE(WECHSELN(A2;"-";"")));1)))-5)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment