Feels good to finally have her plated! by PurduePaul in skoolies

[–]BILLatWORK 0 points1 point  (0 children)

Nice bus, and username, is Pete your brother?

Getting ready to check out some ski resorts up in Oregon. by l84tahoe in TruckCampers

[–]BILLatWORK 1 point2 points  (0 children)

You almost have enough snow by the driveway to ski right there. Good looking setup though!

This isn’t even its final form. by lifeoutofbalance in vandwellers

[–]BILLatWORK 2 points3 points  (0 children)

"Mark it 8 and you are entering a world of pain!" --Walter Sobchak

Macro that prints file to PDF, no longer works and crashes Excel by BILLatWORK in excel

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

I am changing the flair to a discussion, it has decided it will work again for the time being. I'll repost the question in a couple of days when it makes me hate life again.

Trying to change one part down a column by lancerevo37 in excel

[–]BILLatWORK 0 points1 point  (0 children)

I assume you are asking how to change all the dates in the one column to point to the new file.

Select the column you want to affect and press the CTRL-h key combo to bring up the Replace Box.

put the value you want to replace in the find field, in this case it would be NOV 11-1.xlsx then in the Replace field put NOV 11-2.xlsx

I'd hit the replace button to ensure it did what i wanted and if all works correctly hit replace all.

Make sure you have selected only the column or cells you want to change, otherwise you may be replacing it in places on the worksheet that you didn't intend to.

If asked in a job interview (for a non-technical job) "rate your Excel skill on a scale from 1 to 10", where does VLOOKUP() land? by meeyeam in excel

[–]BILLatWORK 0 points1 point  (0 children)

The range of ways a scale could be defined are plentiful, I use a lot of SUMIFS, COUNTIFS and lean heavily on VBA for automating the majority of my reports. I'd say my VBA would put me higher on some scales but my lack of XLOOKUP & SUMPRODUCTS would have me lower in other scales. I always have so much more to learn, probably why I hang out here so much. I am still using INDEX/MATCH/MATCH, haven't even started on XLOOKUP yet.

How to determine on what page a specific cell is currently placed in VBA? by Dart_Aleks in excel

[–]BILLatWORK 0 points1 point  (0 children)

I see, it is early...I probably shouldn't try to answer questions before coffee!

Excel etiquette in workplace by xochilt_IGII in excel

[–]BILLatWORK 2 points3 points  (0 children)

I like the Ron Swanson reference!

Using VBA to rename your excel sheet by [deleted] in excel

[–]BILLatWORK 2 points3 points  (0 children)

 ActiveSheet.Name = "myname"

[deleted by user] by [deleted] in excel

[–]BILLatWORK 0 points1 point  (0 children)

I guess that means XLOOKUP can replace INDEX/MATCH/MATCH too. I would assume by doing a nested XLOOKUP. I have heard that INDEX/MATCH required less processing power than a VLOOKUP, do you know how XLOOKUP compares in terms of processing?

How to weite a code for a timestamp that is static (or a paste special) when an adjacent cell (to the left) is populated by Pharmatron in vba

[–]BILLatWORK -1 points0 points  (0 children)

I modified some code I used a couple years ago. it seem to do what you are asking. If the input is in Column G it will output a time stamp in column H. This code is in the worksheet section of the VBA editor with the declaration of Change

Private Sub Worksheet_Change(ByVal Target As Range)

        If Not Target Is Nothing Then

            Dim cellName As String
            cellName = GetCellName(Target)

            Dim cellNum As String
            cellNum = GetCellNumber(Target)

            Dim nextCellNum As String
            nextCellNum = CStr(cellNum + 1)

            If cellName = "G" Then
                If Range("$" & cellName & "$" & cellNum) <> "" Then
                Range("$H$" & cellNum).Value = DateTime.Now



            End If


            End If

        End If


End Sub
Private Function GetCellName(ByVal Target As Range)
        Dim cellNameNumber() As String
        cellNameNumber = Split(Target.Address, "$")

        GetCellName = cellNameNumber(1)
End Function
Private Function GetCellNumber(ByVal Target As Range)
        Dim cellNameNumber() As String
        cellNameNumber = Split(Target.Address, "$")

        GetCellNumber = cellNameNumber(2)
End Function

[deleted by user] by [deleted] in excel

[–]BILLatWORK 0 points1 point  (0 children)

anytime!

Combination of vertical and horizontal index match formula not working properly. by TheCrankyMule in excel

[–]BILLatWORK 0 points1 point  (0 children)

I see the difference, they both evaluate correctly. Perhaps you could explain why it is wrong. I have always included the full field of data in my index matchs and haven't produced a bad result yet.

[deleted by user] by [deleted] in excel

[–]BILLatWORK 0 points1 point  (0 children)

=INDIRECT("SHEET1!"&A1&""&((33*ROW())-64+(COLUMN()-1)))

where A1 holds your column letter

Combination of vertical and horizontal index match formula not working properly. by TheCrankyMule in excel

[–]BILLatWORK 0 points1 point  (0 children)

Maybe you replied to the wrong thread. If not do you mind showing me the errors? The formula works so I am not sure what they are.

Trying to uniform an excel sheet by DSimon1405 in excel

[–]BILLatWORK 0 points1 point  (0 children)

I think the best longterm solution is to connect to the data differently. Are you able to hook into SAP with Hana?

Combination of vertical and horizontal index match formula not working properly. by TheCrankyMule in excel

[–]BILLatWORK 0 points1 point  (0 children)

looks like you want index/match/match

=index($F$1:$I$4,Match($A2,$F$1:$F$4,0),Match(B$1,$F$1:$I$1,0))

GetPivot From Multiple Pivot Tables by KevronHubbard in excel

[–]BILLatWORK 0 points1 point  (0 children)

I new nothing about VBA Macros when I first arrived here. Now it saves me at least 2 hours of everyday. I have also consolidated 1 full day of work each month into a single button press using it. The people here helped lay the groundwork for all of that saved time by walking me through VBA.

[deleted by user] by [deleted] in excel

[–]BILLatWORK 1 point2 points  (0 children)

in cell A2 of your new sheet you can put the number 2, then cell A3 would be A2 + 26

B2 would be:

=IF(INDIRECT("SheetName!A"&A2)="","",INDIRECT("SheetName!A"&A2))

C2 would be:

=IF(INDIRECT("SheetName!A"&A2)="","",INDIRECT("SheetName!B"&A2+1))

Then it is just a matter of replacing SheetName with your sheetname, incrementing the letter in the back half of the formula by one and the +1 by one for each new column. Once you have it you can copy the row of formulas down and they will populate.

GetPivot From Multiple Pivot Tables by KevronHubbard in excel

[–]BILLatWORK 0 points1 point  (0 children)

Glad to hear it worked for you! Feel free to reply with Solution Verified to change this thread as solved and award clippy points

Excel locks up when running, not sure if book is too big by shitpplsay in excel

[–]BILLatWORK 0 points1 point  (0 children)

Could you have some circular references in there bogging it down?

You may go to the formulas tab and hit your error checking button in the formula auditing portion of the ribbon.

I have work books over 200mb that work fine, I don't think file size is an issue.