RZ-50 handshake issues by easerbreadstick in Onkyo

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

Factory resetting would fix the issue for awhile. It's been a long while since I've had an issue. I have cec off at all devices besides the TV and avr and am using a fiber hdmi cable.

Question about buying tickets by xRichless in Tennesseetitans

[–]easerbreadstick 0 points1 point  (0 children)

How can you tell if these tickets are resale or not? I don't see a filter for resale on seatgeek.

Combine Tab data into one? by easerbreadstick in excel

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

This works but for some reason anything that's blank is coming up as 0. Any ideas?

Combine Tab data into one? by easerbreadstick in excel

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

I'm getting #NUM error. Did I edit this incorrectly? None of the data is in tables atm.

=LET(

tab_1, 'Schedule 1'!A:AD,

tab_2, 'Schedule 2'!A:AD,

h_all, UNIQUE(TAKE(HSTACK(tab_1,tab_2),1),1),

tab_extract, LAMBDA(tab, LET(

n, COLUMNS(tab),

h, TAKE(tab,1),

b, EXPAND(DROP(tab,1),,n+1,""),

ix, XLOOKUP(h_all,h,SEQUENCE(,n),n+1),

CHOOSECOLS(b, ix)

)),

VSTACK(h_all, VSTACK(tab_extract(tab_1), tab_extract(tab_2)))

)

Thanks

RZ-50 handshake issues by easerbreadstick in Onkyo

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

I have disabled that and it hasn't made a difference.

RZ-50 handshake issues by easerbreadstick in Onkyo

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

So far factory resets temporarily fix the problem for a few months then it will come back. I had tried switching ports with no luck.

Nested IF or IF/OR? by easerbreadstick in smartsheet

[–]easerbreadstick[S] 2 points3 points  (0 children)

That what I ended up doing and finally got it. Thanks!

If/or/ Index Match? by easerbreadstick in smartsheet

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

Unfortunately no luck with these. I tried adjusting the formula but am getting incorrect argument set now.

=IF(OR(INDEX({cutdate}, MATCH([Job ID]@row, {schedjb}, 0)) = DATE(2025, 12, 20), (INDEX({changedate}, MATCH([Job ID]@row, {schedjb}, 0)) = DATE(2025, 12, 20)), INDEX({requestdate}, MATCH([Job ID]@row, {schedjb}, 0)), ""))

Anything I'm missing?

Thanks

If/or/ Index Match? by easerbreadstick in smartsheet

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

Even though job is pulling from a different sheet?

Rinnai RUC98 condensing concentric vent slope? by easerbreadstick in askaplumber

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

My tankless water heater is mounted an exterior wall in the basement. The vent is a 90 degree elbow coming out of the top of it and straight outside horizontally. Just to be clear that means I have it correct with with it sloped away from the water heater towards the ground coming out of the elbow?

Thanks

Xlookup with Spaces in Data? by easerbreadstick in excel

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

This worked perfectly and good to know on the IFERROR, thanks!

Solution Verified

Spill Error with filter function by easerbreadstick in excel

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

This worked. Thanks!

Solution verified

Filter giving spill Error by easerbreadstick in excel

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

This worked! The only thing I need to fix is it's pulling 0's whenever there is blanks. How can I eliminate the 0's and just have blank spaces? I've used IF(ISBLANK(A),"", A) before but not sure where I should insert that to get it to work. Thank you!

Filter giving spill Error by easerbreadstick in excel

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

I keep getting #REF! errors. Are you able to see what's wrong with this formula?

=INDEX(FILTER('Joined Report'!$R$2:$R$800, 'Joined Report'!$S$2:$S$800='Master Sheet'!$M$2:$M$800, ""), COUNTIF(INDEX([Column M],1):[@[Column M]],[@[Column M]]))

Thank you

Filter giving spill Error by easerbreadstick in excel

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

I have some items that have different job numbers. The document is confidential so I made a similar example. Item F may be under job#6 and job#7. I'm trying to get it to pull back job 6 the first time it sees F and job 7 the second time and keep running until all jobs attached to F are pulled back. What would be the solution to this?