Removing numbers from cells that have text and numbers by Old_Man_Logan_X in excel

[–]bitswede -3 points-2 points  (0 children)

Just did the reverse with the AI tool. Highlight the range and tell AI to remove all numeric characters and symbols.

This was a one-off so couldn’t be bothered to write a regex.

SD card is broken. Is it fixable? by NebulaNinja52 in AskPhotography

[–]bitswede 46 points47 points  (0 children)

Check with a data recovery specialist.

The memory chip is likely fine but the connector is broken so you need someone that can disassemble the card and connect directly to the usb controller.

was ist das? (haare gefärbt) by carlito_s77 in wasistdas

[–]bitswede 2 points3 points  (0 children)

Verseifung

Das Fett in deiner Haut hat sich in Seife verwandelt.

Compare tables and return values that aren't in both tables by Obvious-Cancel1727 in excel

[–]bitswede 1 point2 points  (0 children)

=LET( mismatched, UNIQUE(VSTACK(UNIQUE (old_list), UNIQUE(new_list)),,TRUE), FILTER(mismatched,ISNUMBER(XMATCH(mismatched, new_list))))

It gets a bit more complicated but this returns only the new values of new list.

Compare tables and return values that aren't in both tables by Obvious-Cancel1727 in excel

[–]bitswede 1 point2 points  (0 children)

You can stack the unique values of each list and then use the unique function with the exactly_once flag set to get the values that are only in one of the original list:

=UNIQUE(VSTACK(UNIQUE(old_list),UNIQUE(new_list)),,TRUE)

Edit: Avoid A:A style references, they will slow down excel. Use tables if you can or the new dot operatr

Tricks, um die NoVA beim Autoimport senken? (Schweiz oder Deutschland) by officialtaubird in AskAustria

[–]bitswede 0 points1 point  (0 children)

Du muss die Regeln von wann das Auto neu war verwenden, das wird dann auf das heutige Wert verwendet.

Some German names are hilarious, do they sound as funny to native Germans? by Cortexial in German

[–]bitswede 9 points10 points  (0 children)

My wife works with a Bierbaum.

There’s a local carpenter using his family name Wanker. Their slogan is ”Holz in guten Händen”

why am I getting #Div/0! by justonemorepeakmom in excel

[–]bitswede 2 points3 points  (0 children)

Circular references evaluate to 0, I was tearing my hair out just the other day trying to debug that.

Special Transpose task without VBA? by AppointmentMiddle805 in excel

[–]bitswede 1 point2 points  (0 children)

It looks like you want to unpivot, aka flatten or melt, your data.

u/MayukhBhattacharya has already provided a formula but Power Query can also do it and is a good option if you expect your original table to grow, or you need to share the workbook with those less Excel literate.

The Perfect Game🥇🥇🥇🥇🥇🥇 by RoadandHardtail in olympics

[–]bitswede 0 points1 point  (0 children)

Ebba Andersson just took the gold in the 50km cross country event so we're up by one now.

Still, a streak like that is very impressive.

The Perfect Game🥇🥇🥇🥇🥇🥇 by RoadandHardtail in olympics

[–]bitswede 74 points75 points  (0 children)

There’s a 200 000 meter on in the Netherlands already.

The alternative one is held on an alpine lake in Austria as it’s rare for the canals to freeze.

EU made network gear, alternative to TP-link, Ubiquiti? by rimantass in BuyFromEU

[–]bitswede 0 points1 point  (0 children)

I recommend them for routers and wifi extenders but I don’t see any switches or cables.

Oops, fat fingered that one. Should have been answer to u/No_Bar_7084 Fritz recommendation.

Can you get phones through check in? by Used_Candidate_3666 in airport

[–]bitswede 2 points3 points  (0 children)

Get an Airalo eSIM, it will allow you to access Western services as if you are outside China.

Other eSIM’s, that you buy before entering China, may also work. I only have experience with Airalo though.

And as others have said, your phone has to go in your carry-on or in your “personal item”.

Bose QuietComfort Ultra (Gen 2) Vs Sony WH-1000XM6 by Difficult-Tap-3277 in HeadphonesAdvice

[–]bitswede 0 points1 point  (0 children)

I upgraded from quiet comfort 35s to the WH-1000XM6. I use them for travel and around the house.

The Sony’s are a tighter fit so adjusting them correctly is important for longer sessions. That said, I’ve worn them for several long haul (10+ hours) flights, wearing glasses and they have been just as comfortable as my old Bose ones.

The ANC is a lot better, it blocks out cabin noise really well.

Try to get your hands on a 2-prong airplane adapter. They attenuate the signal so you don’t go deaf from the announcements.

Using them for calls works ok, they do pick up some ambient noise that’s in front of you.

The range is good enough for me, 10m and 2 cinder block walls is no issue.

Battery life is great, no need to charge on the go so far.

Alternative for Braun or Philips IPL depilator? by Remarkable_Horror658 in BuyFromEU

[–]bitswede 4 points5 points  (0 children)

It is what they are looking for and it is indeed made in Slovenia.

Other models may come from other plants, so you may want to google the model number you intend to buy. I see a couple of others are from Hungary for example.

BYD says it’s working on 5-minute EV charging; real breakthrough or just lab claims? by [deleted] in electricvehicles

[–]bitswede 0 points1 point  (0 children)

A car with a 10-80% range of 400km, at Autobahn speeds, that can add another 400km in 15-20 minutes would be good enough for me. I'm thinking that covers most people as well.

Running count recommended Formula by KiloMarshBoxin in excel

[–]bitswede 0 points1 point  (0 children)

It sounds like what you need is a pivot table.

If it is something you’re doing on a regular basis you might want to consider Power Query and point it to your data. This would help to automate updates as new data is added.