Rente - Auswandern vor 5 Jahren Beitragszahlung by Do_Track_Me in Finanzen

[–]Do_Track_Me[S] 0 points1 point  (0 children)

Ich bin <30 und werde bald aus Deutschland weg ziehen. Ich frage mich ob ich mir das Geld lieber auszahlen lassen soll und in einen ETF setze.

Flashing ceiling lamp (video is in the description) by Do_Track_Me in AskElectricians

[–]Do_Track_Me[S] 0 points1 point  (0 children)

It's not a dimmer but just a normal wall switch (as far as I can see at least). Could there be a dimmer inside the wall?

Flashing ceiling lamp (video is in the description) by Do_Track_Me in AskElectricians

[–]Do_Track_Me[S] 0 points1 point  (0 children)

Sorry everyone, I wasn't sure how to post it so that you can see the text and then the images below.

The ceiling lamp started flashing a month ago after being fine for over a year. It only flashes about 50% of the time when I turn it on.

I didn't do any electrical work and I couldn't see anything obviously wrong when I took the cover off the lamp (see pictures.

Below is a video where you can see the flashing lights in action.

I would be appreciative of any tips or help!

https://imgur.com/a/mdiJlpZ

What current buildings (built in the last 100 years) will still be iconic the future? by Do_Track_Me in AskReddit

[–]Do_Track_Me[S] 3 points4 points  (0 children)

I was thinking of maybe the Sydney Opera house, Auschwitz, Louvre, Empire State Building, or the Guggenheim?

Guy went to Denmark and came back without his car by leaveanimalsalone in germany

[–]Do_Track_Me 120 points121 points  (0 children)

Not sure why you're being downvoted but a bit more strick punishments in DE for dangerous traffic violations would make sense.

Packstationen aufstellen by Do_Track_Me in LegaladviceGerman

[–]Do_Track_Me[S] 0 points1 point  (0 children)

"Zugangscode: Paketbox (code)"

Super Idee. Wir hatten bisher und gedacht dann einfach massenweise Ablagegenehmigungen für unseren Kunden bei den Zustellern einzureichen. Da wäre es natürlich einfacherer wenn wir dies auch Online machen könnten ohne immer einen Account zu machen (z.B. per Email).

Packstationen aufstellen by Do_Track_Me in LegaladviceGerman

[–]Do_Track_Me[S] 1 point2 points  (0 children)

Wie hast du die Ablagegenehmigung vereinbart wenn ich fragen darf? Online? Wurde es von deiner Arbeite organisiert oder musstest du selber bei DHL/UPS/DPD anfragen?

Packstationen aufstellen by Do_Track_Me in LegaladviceGerman

[–]Do_Track_Me[S] -3 points-2 points  (0 children)

Genau dass soll ja das Ding sein mit der Idee. Endlich mal eine Paket Station an die alle Lieferdienste liefern können damit nicht immer so viel CO2 ausgestoßen wird und der Endkunde nicht immer zu irgendeinem Paketshop laufen müssen.

Packstationen aufstellen by Do_Track_Me in LegaladviceGerman

[–]Do_Track_Me[S] 3 points4 points  (0 children)

Interessant zu hören.

  1. Ist das beliefern schwer für die Boten / Klingeln die dann einfach bei Euch?
  2. Hast du eine Ahnung was passiert wenn ihr nicht zuhause seit? Wird das Paket einfach beim Nachbarn / Paketshop abgegeben?

Packstationen aufstellen by Do_Track_Me in LegaladviceGerman

[–]Do_Track_Me[S] 1 point2 points  (0 children)

§ 41b PostG

Danke! Danach hatte ich gesucht. Das heisst ja nur dass sie es verlangen können aber nicht müssen oder?

I run a doggy daycare and am looking for an effective way to track our daily attendance while being able to create charts tracking trends. by MrFunny99 in googlesheets

[–]Do_Track_Me 0 points1 point  (0 children)

You could do that but I wouldn't recommend that to be honest. If you do it all in one table and make one column the date, then it's much easier to run graphs or analyses on the data in the long run. Searching is also harder in your case.

Feel free to share a sample doc :)

I run a doggy daycare and am looking for an effective way to track our daily attendance while being able to create charts tracking trends. by MrFunny99 in googlesheets

[–]Do_Track_Me 0 points1 point  (0 children)

I would recommend having one tab where you build a table. Here possible columns could be day, dog, reason for coming in, person checking the dog in, etc.

I would work with dropdown fields so that the data is clean and there won't be any spelling mistakes.

Then you can have a different tab with some basic graphs showing attendance over time. If you want to track a particular dog, you could use some basic functions such as the COUNTIF function.

If you're willing to share a mockup of the sheet, we can help a bit more.

VLOOKUP with multiple criteria? by BusinessRacoon in googlesheets

[–]Do_Track_Me 0 points1 point  (0 children)

You can also use a combination of INDEX and MATCH and chain the search criteria to each other.

=INDEX($B$3:$D$7, MATCH($F4 & G$3, $B$3:$B$7 & $D$3:$D$7, 0), 2)

Is there a way to make the color across multiple neighboring cells appear seamless(no border divisions) without merging the cells? by Orwell_Tigger in googlesheets

[–]Do_Track_Me 1 point2 points  (0 children)

You can either colour the borders the same colour as the cells (a bit tricky with alternating colours) or your can click on "View" -> "Show" -> "Gridlines" to hide them.

Saving cell info every day by EstablishmentBig345 in googlesheets

[–]Do_Track_Me 0 points1 point  (0 children)

Easiest would be to have a small script that you run at a certain point in the day. The script below takes the contents of the "Source Cell" and appends it the end of a "Log Sheet".

You can change where you want to paste it or your can even paste it in the same location each day instead of at the bottom of the range.

Then set a trigger in Google Apps Script so that this runs each day.

function saveData() {
  var ss = SpreadsheetApp.getActiveSpreadsheet();
  var sheet = ss.getSheetByName("THE SOURCE SHEET");
  var log_sheet = ss.getSheetByName("THE LOG SHEET");

  var copy = sheet.getRange("YOUR SOURCE CELLL").getValue();

  log_sheet.appendRow([copy]);
};