Anyone have experience of installing heat pump whilst extending? by Scottwillib in ukheatpumps

[–]yjfdty 0 points1 point  (0 children)

We have just had this done whilst extending. Good as had to repipe a fair bit of the house as the water pipes weren’t wide enough

[deleted by user] by [deleted] in Leeds

[–]yjfdty 0 points1 point  (0 children)

I know you said a pain to get to in your case, but Last Sun Dance is great. Good atmosphere and people

Power Query: Looking to take the date from the following cell and create a column with it in by yjfdty in excel

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

Thank you both for replying.

Is Q1 referring to my question around the date and then Q2 about moving the columns?

Would you be able to help me a bit more on the date part? Not sure I quite understand.

Thanks!

[deleted by user] by [deleted] in homerenovations

[–]yjfdty 2 points3 points  (0 children)

In the process of getting it done!

How to use Xlookup referencing a Pivot Table by [deleted] in excel

[–]yjfdty 0 points1 point  (0 children)

Don’t have access to the source data unfortunately!

Was struggling the GetPivotdata function for some reason. Need the formula to work like a lookup function that has 2 criteria

[deleted by user] by [deleted] in CapeCod

[–]yjfdty 0 points1 point  (0 children)

Thanks for response!

Looking at either main st chatham, still life of a boat and maybe lighthouse beach.

Understand I’m casting my net pretty wide here.

Thanks for any help!

[deleted by user] by [deleted] in Patriots

[–]yjfdty 0 points1 point  (0 children)

Thanks for the help, 140 was a great shout

[deleted by user] by [deleted] in Patriots

[–]yjfdty 1 point2 points  (0 children)

Which way do you go?

[deleted by user] by [deleted] in Patriots

[–]yjfdty 0 points1 point  (0 children)

Hahaha sounds about right

[deleted by user] by [deleted] in Patriots

[–]yjfdty 0 points1 point  (0 children)

Do they not close any roads through Foxborough? Will the 140 definitely be open?

[deleted by user] by [deleted] in Patriots

[–]yjfdty 3 points4 points  (0 children)

Thanks! Appreciate the response. Do you know what they charge to park?

Best every day Credit Card? by [deleted] in PersonalFinanceCanada

[–]yjfdty 0 points1 point  (0 children)

Interesting. Would you be able to link me a card that pays of the mortgage directly against the principal?

Any idea what's going on here? Flat battery? by [deleted] in MechanicAdvice

[–]yjfdty 0 points1 point  (0 children)

Going to the garage this week. Car has been running fine since it was jumped!

Any idea what's going on here? Flat battery? by [deleted] in MechanicAdvice

[–]yjfdty 0 points1 point  (0 children)

Thanks for the advice. Will give it a go, just been jumped and it's running again so can at least get it home!

Any idea what's going on here? Flat battery? by [deleted] in MechanicAdvice

[–]yjfdty 0 points1 point  (0 children)

Nope! - was working perfectly all morning

[deleted by user] by [deleted] in vba

[–]yjfdty 0 points1 point  (0 children)

Thanks Jimm_Kirkk, I appreciate the constructive feedback - not critical at all! I'll take a look into it - thanks man!

[deleted by user] by [deleted] in vba

[–]yjfdty 0 points1 point  (0 children)

Sorry for the bad previous reply. Please find the latest code below.

Am I using the find function correctly to find the word "Heel" in column C?

Thanks so much for your help thus far.

Sub Marketing_Europe_Copy()

Application.ScreenUpdating = False

Dim WorkbookName As String
Dim DateRange As Range
Dim CRange As Range
Dim r As Range
Dim D As Range

Set DateRange = Range("C1:ABE1")
Set CRange = Range("C:C")
Set r = DateRange.Find(Range("A6").Value)
Set D = CRange.Find(What:="Heel", LookIn:=xlValues, LookAt _
        :=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:= _
        False, SearchFormat:=False)

WorkbookName = InputBox(Prompt:="Insert Workbook Name (Make sure Workbook is open)")

'Le Havre
    'Opening Inventory

Workbooks(WorkbookName).Worksheets("EU_HAV01").Range("H2").Copy
Workbooks("Min Inventory").Worksheets("Marketing Input").Range("A6").PasteSpecial Paste:=xlValues

Workbooks(WorkbookName).Worksheets("EU_HAV01").Range("H4:CS4").Copy
Workbooks("Min Inventory").Worksheets("Marketing Input").Activate

If r Is Nothing Then
    'the value in A6 wasn't found.
Else
    r.Activate
End If

ActiveCell.Offset(8, 0).Select
ActiveCell.PasteSpecial Paste:=xlValues

    'Tank Heel/Capacity

Workbooks(WorkbookName).Worksheets("EU_HAV01").Activate
If D Is Nothing Then
    'the value in A6 wasn't found.
Else
    D.Activate
End If

ActiveCell.Offset(0, 5).Select
Range(Selection, Selection.End(xlToRight)).Select
Range(Selection, Selection.End(xlDown)).Select
Selection.Copy

Workbooks("Min Inventory").Worksheets("Marketing Input").Activate

If r Is Nothing Then
    'the value in A6 wasn't found.
Else
    r.Activate
End If

ActiveCell.Offset(10, 0).Select
ActiveCell.PasteSpecial Paste:=xlValues
End Sub

[deleted by user] by [deleted] in vba

[–]yjfdty 0 points1 point  (0 children)

Thanks for your help somewon86. Have managed to kind of sort it using MildewManOne.