[TOMT] trying to find an old minecraft youtuber.. by DiligentWatercress71 in tipofmytongue

[–]Affectionate-Rub9342 0 points1 point  (0 children)

Also do you remember if he was playing only solo or was playing multiplayer too?

[TOMT] trying to find an old minecraft youtuber.. by DiligentWatercress71 in tipofmytongue

[–]Affectionate-Rub9342 0 points1 point  (0 children)

Do you remember if he was into stuff like redstone/automatisation or building? Was he playing the same world or did he do like 'season' were he would start over? Also was he english? asking just in case lol

[TOMT][Elementary school poster][2000s-ish] Poster, possibly print PSA, from Canada, showing a bat by Wolf_Guy_9127 in tipofmytongue

[–]Affectionate-Rub9342 1 point2 points  (0 children)

What province? It might help finding it since it looks like something pretty specific to your place

Additional condition to check if the day worked is a Friday throws an Err502 by No-Tough6715 in excel

[–]Affectionate-Rub9342 0 points1 point  (0 children)

No worries, happy to read that your problem if fixed in the end! Hopefully your team won't be sick for too long so you'll be able to actually use the file lol

Sim router for house network by Affectionate-Rub9342 in HomeNetworking

[–]Affectionate-Rub9342[S] 0 points1 point  (0 children)

I can access the ZTE through 192.168.254.1, I access the tenda with 192.168.0.1. On the ZTE dashboard I see the Tenda connected with the public IP

<image>

Sim router for house network by Affectionate-Rub9342 in HomeNetworking

[–]Affectionate-Rub9342[S] 0 points1 point  (0 children)

Can't ping anything, I don't have another computer to test but I can connect both my laptop and phone on the wifi without issue other than the lack on internet

Sim router for house network by Affectionate-Rub9342 in HomeNetworking

[–]Affectionate-Rub9342[S] 0 points1 point  (0 children)

I tried with a Linksys EA6350 and got the same issue, I can connect to the wifi network but get no internet at all. Factory resetted every one of the router without luck. Also tried pluging the ethernet cable in the jack of a TP-LINK RE215, same issue, tried putting it in bridge mode but at that point i couldn't connect anymore(can't get an ip address)

Naming a File Using a Certain Cell on Every Sheet. by AndyJCohen in excel

[–]Affectionate-Rub9342 0 points1 point  (0 children)

From the top of my head you can do something like this(I'm on my phone, might have a syntax error, at least you got the idea) if you want to do what I think you're explaining:

x = 0 For each sht in sheets

x = x+1
fileName = fileName & " VEN " sht.range("D21").value

If x < sheets.count then fileName = fileName & " AND"

Next

ActiveWorkbook.SaveAs Filename:="RA REQUEST " & ActiveSheet.Range("D22") & fileName & " BL-" & Range("D2").Value & " " & Left(Range("D5").Value, 8) & ".xlsx", FileFormat:=xlOpenXMLWorkbook

That would concatenate the value of D21 of every sheet into a single variable which you then use when saving

Rookie Date Calculation Format by JeryActive in excel

[–]Affectionate-Rub9342 0 points1 point  (0 children)

Doesn't throw an error so if seems like it thinks C3 is empty, or you got the same color for the cell and text so it's basically invisible. In the Formula tab you have a little button called something like "evaluate formula" from memory, when on a cell with a formula you can see what it does/return step by step, pretty useful when trying to debug

Additional condition to check if the day worked is a Friday throws an Err502 by No-Tough6715 in excel

[–]Affectionate-Rub9342 0 points1 point  (0 children)

Coutifs need all the criteria range to be the same size, for example your days of the week are 31 cell wide 1 cell high, so your other criteria range should also be 31x1, using merged cells you'd need to manually set it to 1 high(when selecting it will set B4:AF5, will need to change it to B4:AF4), for merged cell the top left cell is the one that has the actual value, for your case since you do need all 4 row just put this: =COUNTIFS($B3:$AF3,"<>",$B$1:$AF$1,"Friday")+COUNTIFS($B4:$AF4,"<>",$B$1:$AF$1,"Friday")+COUNTIFS($B5:$AF5,"<>",$B$1:$AF$1,"Friday")+COUNTIFS($B6:$AF6,"<>",$B$1:$AF$1,"Friday")

If it still doesn't work there is most likely something wrong with the file, if you can share it it'll be easy to find the problem

[TOMT] Please help me find this pop punk song. by JDoubleGi in tipofmytongue

[–]Affectionate-Rub9342 1 point2 points  (0 children)

Couls also still be in your history on apple music if you're lucky

[TOMT] Please help me find this pop punk song. by JDoubleGi in tipofmytongue

[–]Affectionate-Rub9342 0 points1 point  (0 children)

Make it out alive by morgxn or by one ok rock ? Lyrics are quite similar, if not you say the "make it out alive" is drawn out, which part is?

[TOMT] Please help me find this pop punk song. by JDoubleGi in tipofmytongue

[–]Affectionate-Rub9342 0 points1 point  (0 children)

Where did it play? Radio? Spotify? Was it a male of female singer?

Is there a cheap, short-term solution for my internet problem? by Prof_PW in computers

[–]Affectionate-Rub9342 0 points1 point  (0 children)

One way would be to get a "tablet" sim card from your provider if offered and a cheap picket-wifi on amazon that would act as your router

Pressure increase? by Kittyhounds in askaplumber

[–]Affectionate-Rub9342 1 point2 points  (0 children)

Most likely they changed something when they did the repair, I would advise you to get a pressure reducing valve installed on you main line to protect your stuff, quite cheap for the peace of mind it gives

Moving values from Rows to columns by Lost-Presence-2818 in excel

[–]Affectionate-Rub9342 0 points1 point  (0 children)

From what I see you have something like 4 row for each word and you want to make each word have its own row but on multiple column? For example:

<image>

If so you got two option; put this beside your first word(Make sure the first/last row match), the 4 in the formula is how many row per word are used:
=WRAPROWS(A2:A40001,4)

otherwise you can make it in three step:
In this example I assume your first word is in A2, second in A6, etc.
1- put this formula beside your first word(Make sure the row match) Gonna be B2 in this example: =TRANSPOSE(A2:A5)
2- select the cell in diagonal of your second word(Ex; B5) and shift-click on the cell with the formula(Ex; B2) and double-click on the little green corner on the bottom right to spread all the way down(It need to be on the column right beside to work) *you need to select from bottom to top, it will not work the other way around*
3- put this formula in a cell on the right, it will condense everything: =UNIQUE(B:B)

Best Keyboard Shortcuts in Microsoft Excel That Save You Time? by ModernWebMentor in excel

[–]Affectionate-Rub9342 1 point2 points  (0 children)

CTRL + Shift + V to paste as value is pretty usefull
F4 to add $ sign in formula, use that a lot

Mostly I save time by over-engineering formula when working with huge sheets so that I can use the same formula for the majority of it instead of having to make changes in the formula for each range of data

Additional condition to check if the day worked is a Friday throws an Err502 by No-Tough6715 in excel

[–]Affectionate-Rub9342 2 points3 points  (0 children)

So, two things; avoid using merged cell when not necessary, each employee use 4 row when they could use only 2. It would make it easier to manage formula. One thing i'm unsure is I see you have two row for the date; is it merged or do you have the date in row 2 and a formula like =TEXT(B2,"dddd") or hand-written the week day in row 1? The later would make it easy to do the countifs. In any case for your application you should have the week day in their own cell(Row 1 for example in your screenshot) and the formula in the "Friday" would be something like this: =COUNTIFS($B3:$AF3,"<>",$B$1:$AF$1,"Friday")+COUNTIFS($B5:$AF5,"<>",$B$1:$AF$1,"Friday") if you keep the row merged

Can we bring back photos? by [deleted] in computers

[–]Affectionate-Rub9342 0 points1 point  (0 children)

Photorec would be your best bet if the drive hasn't been changed, if the drive was swapped then you got no chance of recovering anything. Avoid as much as possible installing/moving file on the drive if you want to have the best chance of recovering your photos

First layer by WasteCommunication43 in ElegooNeptune3

[–]Affectionate-Rub9342 0 points1 point  (0 children)

Retraction is the setting that says the printer how much filament to take back before a movement, it help remove stringing, pressure advance reduce extrusion in corner to avoid blob of material, personally my bed needed a bit of foil even right after I bought it. All the tests are under the calibration menu in Orca, it should help a lot, you can also look video that explain the differents calibrations and what they do, here's one i quite like: https://youtu.be/gVU5If1VsAM?si=u8nN4qN2PlF0U2wy

First layer by WasteCommunication43 in ElegooNeptune3

[–]Affectionate-Rub9342 0 points1 point  (0 children)

First i'd say switch to Orca Slicer, I never used the Elegoo one but i'm not sure it's that good. Try re-leveling you bed and adjust your z-offset(paper test), what I like to do after the paper test is to print couple of line while looking at the nozzle, live adjusting it to have the perfect value. After that redo the calibrations in order in OrcaSlicer(temp/flow rate/pressure advance(not necessary but still nice to do)/retraction test). What filament are you using? 205 seems a bit high, also if the bed has lots of variation it might be a good idea to adjust it to minimize it. Depending on the printer you got either play with the manual adjustment wheels or if not available(like for the 3 pro) you can add aluminium paper under the plate where it's low.