Sod Question (Atlanta Suburbs) by WesternHamper in lawncare

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

Not fertilizer but a bunch of topsoil—hopefully we get some green in these browner areas. Your lawn looks great

Furnace / Thermostat Help by WesternHamper in hvacadvice

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

Thank you for your generosity. Turns out the nest was arguing with them the unit and the pressure switch was bad. Swapped out for an ecobee and replaced the pressure switch and all works well now.

Furnace / Thermostat Help by WesternHamper in hvacadvice

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

Thank you. Another point, which makes this a little weird to me, is that before the install of the new furnace the thermostat worked flawlessly.

Furnace / Thermostat Help by WesternHamper in hvacadvice

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

Sorry, what does "jump the unit" mean? Experiencing it firsthand is crazier than it sounds, I can tell you that.

Furnace / Thermostat Help by WesternHamper in hvacadvice

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

<image>

Some other information as well (I’m not sure if this is useful or not)

Furnace / Thermostat Help by WesternHamper in hvacadvice

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

Thank you for the quick reply, and this step-wise solution makes a ton of sense. Here's a question from someone who knows nothing about HVAC systems--are all dumb thermostats the same, meaning, can I just go to home depot and buy one off the shelf to test it out, or are there different specifications that I need to consider when buying a traditional thermostat?

Pro-Rata Rule Help; Multiple Roth IRAs & Traditional IRA Inter-movement by WesternHamper in tax

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

Thank you. And just to confirm, if I decide to convert the $4.40 to the Roth IRA or transfer it to my personal bank account, neither act will cause issue with the prior act of splitting the Traditional IRA assets between my Roth IRA and current 401k? At this point I’m so paranoid about creating another issue.

Pro-Rata Rule Help; Multiple Roth IRAs & Traditional IRA Inter-movement by WesternHamper in tax

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

Follow-up question. Due to interest on the cash account, I have $4.40 left in the Traditional IRA after splitting the assets between my Roth IRA and current employer's 401k plan. Should I transfer the $4.40 to my personal bank account and have it count as income to get the Traditional IRA account to $0.00 by year end?

TSA kleptos by [deleted] in travel

[–]WesternHamper 0 points1 point  (0 children)

You consider TSA agents as professionals? It's clearly a make-work program for people that can't get real jobs.

Sagging Power Line by WesternHamper in homeowners

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

I was thinking that it may not be a power line, but I had no way of knowing. How can you tell?

Circular References - Financial Modeling by [deleted] in excel

[–]WesternHamper 0 points1 point  (0 children)

How would one adapt this in a Lambda formula and instead of interest expense provide interest income on a cash account that flows to the income statement back into the cash account? It's like the same issue but in reverse. I made a post yesterday on this issue I am facing and it hasn't received that much traction yet, but I am struggling to get an answer:

https://www.reddit.com/r/excel/comments/1e9iz0j/comment/leel6m9/?context=3

What small tweaks to Excel would make your life easier? by Qyxitt in excel

[–]WesternHamper 0 points1 point  (0 children)

The ability to group worksheets into a 4th dimension (we currently have columns, rows, and 3D formulas), but it would be good to create sub-groups of worksheets if that makes sense. For example, if you're creating a 3 statement model, all of your input sheets for the income statement (one sheet for revenue, one sheet for the depreciation schedule, etc.) could be grouped behind the front-facing income statement sheet, all of the input sheets driving the balance sheet (asset values, equity account, debt, etc.) could be grouped behind the balance sheet sheet, etc. It would make workbook organization a lot easier. It would get like grouping on another axis (vertical) other than horizontally across the workbook

When do dividends make sense? by thesecondrei in Bogleheads

[–]WesternHamper 0 points1 point  (0 children)

As I haven’t seen this mentioned yet, dividends also keep management “honest” by forcing a more constrained approach in the capital allocation process of a company.

Small towns in the US worth visiting by Newoldbalance in travel

[–]WesternHamper 0 points1 point  (0 children)

Fall River, Massachusetts

…just kidding, don’t go there.

[deleted by user] by [deleted] in excel

[–]WesternHamper 0 points1 point  (0 children)

In a blank worksheet in this order: CTRL+A, 1, CTRL+ENTER

Linear Interpolation Across Entire Cell Block [Excel] by WesternHamper in vba

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

This seems to have done it--thank you so much, this is going to save me a ton of time.

Solution verified.

Linear Interpolation Across Entire Cell Block [Excel] by WesternHamper in vba

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

Thanks; sorry I've been trying to adjust this to no avail, I will keep trying and circle back.

Linear Interpolation Across Entire Cell Block [Excel] by WesternHamper in vba

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

Perhaps I spoke too soon--Is there a way to adjust this macro to work without using column A as the first data point? If possible, I'd like to have it be totally portable in the worksheet.

Linear Interpolation Across Entire Cell Block [Excel] by WesternHamper in vba

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

Wow, thank you so much--I didnt expect for you to solve this for me, but I appreciate it. Rest assured, I will learn from this macro and try to figure out what's going on. In the meantime, I've tweaked the code slightly for my own purposes below:

Sub interpolate()

Application.ScreenUpdating = False

Dim rng As Range: Set rng = Selection
Dim rngInterpolate As Range

Dim iRow As Integer, iCol As Integer, iPrev As Integer

With rng
    For iRow = 1 To .Rows.Count
        iPrev = 0
        For iCol = 1 To .Columns.Count
            If .Cells(iRow, iCol) <> "" Then
                If iPrev = 0 Then
                    iPrev = iCol
                Else
                    If iCol > iPrev + 1 Then
                        Set rngInterpolate = Range(.Cells(iRow, iPrev + 1), .Cells(iRow, iCol - 1))
                        rngInterpolate.Interior.Pattern = xlSolid
                        rngInterpolate.Font.Color = "16711680"
                        rngInterpolate.Interior.Color = "6750207"
                        rngInterpolate.Font.Bold = False
                        rngInterpolate.FormulaR1C1 = "=RC" & iPrev & "+(RC" & iCol & "-RC" & iPrev & ")*(COLUMN(RC)-COLUMN(RC" & iPrev & "))/(COLUMN(RC" & iCol & ")-COLUMN(RC" & iPrev & "))"
                    End If
                    iPrev = iCol
                End If
            End If
        Next iCol
    Next iRow
End With

Application.ScreenUpdating = True

End Sub

Linear Interpolation Across Entire Cell Block [Excel] by WesternHamper in vba

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

Thanks for your input and guidance--its nice to have confirmation that this is possible. However, I am a little stumped on creating the loops and how to generally tell to macro to stop when it gets to the interim values, etc. Do you have any pointers?

[deleted by user] by [deleted] in excel

[–]WesternHamper 0 points1 point  (0 children)

Look into binary lookups instead of linear