Proper Board Etiquette Questions Regarding Time Follow Up

DougStroud

Well-known Member
Joined
Aug 16, 2005
Messages
2,976
Office Version
  1. 365
Platform
  1. MacOS
Hello,
I would like to use proper posting etiquette here. Could someone offer the appropriate ways of the board?
I have two questions w/ respect to posting on the board.
1. Topic had not been resolved / Do not know the Topic existed. Should a New Post or use Old Post: Should a new Topic, be started or the original one be added to?

I had started a new thread on an Excel matter based on what I had or not found, on the topic in the knowlege base, "How to create personalized macro buttons". Another user had started a thread over a year ago (exact same thing, which I did not know about at the time of the new topic was started) which another user had sent me a link on in a reply post. I followed up w/ the original poster, but this topic had not been resolved (I spoke to him personally after being directed to the topic).
A regular board member, much more experienced than I instructed me to post off the original thread not use a new one, so I did. I still have not gotten a response to date... about two weeks now.

2. Since the issue had never been resolved and it was quite old, what is the appropriate etiquette regarding posting to the old request or a new one and how long should one wait before posting the question again if no response is given? As I mentioned above, it has been a little longer than two weeks now.

Regards,

Doug
 
Hello Doug,

Respond to original thread, with a bump. Perhaps add additional, pertinent information to help clarify... Please do not start a new thread. I'd say wait 24 hours before bumping...

I presume a lot of no-response threads are the result of confusion as to what the original question is. :)
 
Nate,
What do you mean respond w/ a bump?

Doug
 
Hi Doug,

By responding, you're effectively bumping the post back to the top of the list of threads.

But gratuitous 'bumping' as such tends to put people off... And, when I respond to a thread that has several bumps, I tend to delete them if there's nothing of any value in the 'bump post'...
 
Nate,
I was reading through some of the recommended add-ins, what is the PULL Function?
 
pull is on the addins list - written by Harlan, code is:

Code:
Attribute VB_Name = "pull"
Option Explicit


'----- begin VBA -----
Function pull(xref As String) As Variant
  'inspired by Bob Phillips and Laurent Longre
  'but written by Harlan Grove
  '-----------------------------------------------------------------
  'Copyright (c) 2003 Harlan Grove.
  '
  'This code is free software; you can redistribute it and/or modify
  'it under the terms of the GNU General Public License as published
  'by the Free Software Foundation; either version 2 of the License,
  'or (at your option) any later version.
  '-----------------------------------------------------------------
  '2005-05-02
  'fixed InStrRev syntax. Now using XL2K+ syntax.
  '-----------------------------------------------------------------
  '2005-04-18
  'added logic to check for date values from open workbooks, then
  'adjust for 1904 date system in source workbooks
  '-----------------------------------------------------------------
  '2004-05-30
  'still more fixes, this time to address apparent differences between
  'XL8/97 and later versions. Specifically, fixed the InStrRev call,
  'which is fubar in later versions and was using my own hacked version
  'under XL8/97 which was using the wrong argument syntax. Also either
  'XL8/97 didn't choke on CStr(pull) called when pull referred to an
  'array while later versions do, or I never tested the 2004-03-25 fix
  'against multiple cell references.
  '-----------------------------------------------------------------
  '2004-05-28
  'fixed the previous fix - replaced all instances of 'expr' with 'xref'
  'also now checking for initial single quote in xref, and if found
  'advancing past it to get the full pathname [dumb, really dumb!]
  '-----------------------------------------------------------------
  '2004-03-25
  'revised to check if filename in xref exists - if it does, proceed;
  'otherwise, return a #REF! error immediately - this avoids Excel
  'displaying dialogs when the referenced file doesn't exist
  '-----------------------------------------------------------------
  Const DS1904DIFF As Long = 1461

  Dim xlapp As Object, xlwb As Workbook
  Dim b As String, r As Range, c As Range, n As Long, ds1904 As Boolean

  '** begin 2004-05-30 changes **
  '** begin 2004-05-28 changes **
  '** begin 2004-03-25 changes **
  '** 2005-05-02 change - XL2K+ syntax **
  n = InStrRev((xref), "\")

  If n > 0 Then
    If Mid(xref, n, 2) = "\[" Then
      b = Left(xref, n)
      n = InStr(n + 2, xref, "]") - n - 2
      If n > 0 Then b = b & Mid(xref, Len(b) + 2, n)

    Else
      '** 2005-05-02 change - XL2K+ syntax **
      n = InStrRev((xref), "!")
      If n > 0 Then b = Left(xref, n - 1)

    End If

    '** key 2004-05-28 addition **
    If Left(b, 1) = "'" Then b = Mid(b, 2)

    On Error Resume Next
    If n > 0 Then If Dir(b) = "" Then n = 0
    Err.Clear
    On Error GoTo 0

  End If

  If n <= 0 Then
    pull = CVErr(xlErrRef)
    Exit Function
  End If
  '** end 2004-03-25 changes **
  '** end 2004-05-28 changes **

  pull = Evaluate(xref)

  '** begin 2005-04-18 changes **
  If Not IsError(pull) Then
    On Error Resume Next
    ds1904 = Workbooks(Right(b, n)).Date1904
    Err.Clear
    On Error GoTo 0
  End If

  '** key 2004-05-30 addition **
  '** changed in 2005-04-18 changes **
  If IsArray(pull) Then
    If ds1904 Then
      Dim a As Variant, i As Long, j As Long

      a = pull
      For i = LBound(a, 1) To UBound(a, 1)
        For j = LBound(a, 2) To UBound(a, 2)
          If VarType(a(i, j)) = vbDate Then a(i, j) = a(i, j) + DS1904DIFF
        Next j
      Next i
      pull = a

    End If

    Exit Function

  ElseIf ds1904 And VarType(pull) = vbDate Then
    pull = pull + DS1904DIFF

  End If
  '** end 2004-05-30 changes **
  '** end 2005-04-18 changes **

  If CStr(pull) = CStr(CVErr(xlErrRef)) Then
    On Error GoTo CleanUp   'immediate clean-up at this point

    Set xlapp = CreateObject("Excel.Application")
    Set xlwb = xlapp.Workbooks.Add  'needed by .ExecuteExcel4Macro

    On Error Resume Next    'now clean-up can wait

    n = InStr(InStr(1, xref, "]") + 1, xref, "!")
    b = Mid(xref, 1, n)

    Set r = xlwb.Sheets(1).Range(Mid(xref, n + 1))

    If r Is Nothing Then
      pull = xlapp.ExecuteExcel4Macro(xref)

    Else
      For Each c In r
        c.Value = xlapp.ExecuteExcel4Macro(b & c.Address(1, 1, xlR1C1))
      Next c

      pull = r.Value

    End If

CleanUp:
    If Not xlwb Is Nothing Then xlwb.Close 0
    If Not xlapp Is Nothing Then xlapp.Quit
    Set xlapp = Nothing

  End If

End Function


'** 2005-05-02 change - InStrRev for XL97 using abbreviated XL2K+ syntax
#If Not VBA6 Then
Private Function InStrRev(s As String, ss As String) As Long
  Dim k As Long, n As Long

  k = Len(ss)
  n = Len(s) - k + 1

  For n = n To 1 Step -1
    If Mid(s, n, k) = ss Then Exit For
  Next n

  InStrRev = n
End Function
#End If
'-----  end VBA  -----
 

Forum statistics

Threads
1,221,621
Messages
6,160,879
Members
451,675
Latest member
Parlapalli

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top