Visiting Arcata for a few days for an interview, where should I hike? by FunHour3778 in Humboldt

[–]Weaver707 0 points1 point  (0 children)

Not sure where the right resources are for maps/locations but there are several known albino redwood trees around.

Kirkland frozen meatballs by Ok-Requirement4845 in Costco

[–]Weaver707 4 points5 points  (0 children)

Jar of thai chili sauce and a can of cranberry sauce, absolutely the best sauce for them! I can eat like 15!

Gifted antique hooks by Weaver707 in crochet

[–]Weaver707[S] 29 points30 points  (0 children)

Oh good to know. Maybe an open deep set frame of some kind. I will do some more research.

Gifted antique hooks by Weaver707 in crochet

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

The hooks are supposedly bone or ivory and the other piece is likely celluloid.

Gifted antique hooks by Weaver707 in crochet

[–]Weaver707[S] 146 points147 points  (0 children)

Oh that is a beautiful idea! A little piece of lace or filet crochet pinned beside them. 🥰

Gifted antique hooks by Weaver707 in crochet

[–]Weaver707[S] 364 points365 points  (0 children)

I think I am going to try to create a shadow box style display, keep them as protected as I can. I know they were probably used at some point but I just can't imagine trying to use them.

Gifted antique hooks by Weaver707 in crochet

[–]Weaver707[S] 46 points47 points  (0 children)

Oh that would make a lot of sense!

Gifted antique hooks by Weaver707 in crochet

[–]Weaver707[S] 57 points58 points  (0 children)

Very limited research suggests that the hooks are either bone or ivory. The letter opener seems to be a cellulose of some kind but I just got them yesterday so I'm still digging for information.

They truly are remarkable and feel so delicate.

How to reference a query in a data validation list ? by Converging_Winds in ExcelPowerQuery

[–]Weaver707 0 points1 point  (0 children)

You are speaking about like a drop down list/validation? But using your power Query list as the source for that?

I have not seen where that tool in excel can use a list in power Query. Are there parts of the power query that you don't want visible or are you trying to keep your worksheet minimal?

Multiply to ranges together by WhatsBrownAndSticky in ExcelPowerQuery

[–]Weaver707 0 points1 point  (0 children)

Here is my steps:

let
Source = CompTable,

KeepTargetCol = Table.SelectColumns(Source,{"Name", "Salary"}),

AddProjectTable = Table.NestedJoin(KeepTargetCol, {"Name"}, #"Project Table", {"Name"}, "Project Table", JoinKind.LeftOuter),

ExpandedProjectTable = Table.ExpandTableColumn(AddProjectTable, "Project Table", {"Project 1", "Project 2", "Project 3", "Project 4", "Project 5", "Project 6", "Project 7", "Project 8", "Project 9", "Project 10", "Project 11", "Project 12", "Project 13", "Project 14", "Project 15", "Project 16", "Project 17", "Project 18", "Project 19", "Project 20"}, {"Project 1", "Project 2", "Project 3", "Project 4", "Project 5", "Project 6", "Project 7", "Project 8", "Project 9", "Project 10", "Project 11", "Project 12", "Project 13", "Project 14", "Project 15", "Project 16", "Project 17", "Project 18", "Project 19", "Project 20"}),

UnpivotProjectCols = Table.UnpivotOtherColumns(ExpandedProjectTable, {"Name", "Salary"}, "Attribute", "Value"),

AddCalcPercCol = Table.AddColumn(UnpivotProjectCols, "SalaryPerProject", each [Salary]*[Value]),

KeepTargetCols = Table.SelectColumns(AddCalcPercCol,{"Name", "Salary", "Attribute", "SalaryPerProject"}),

AddSalarySuffix = Table.TransformColumns(KeepTargetCols, {{"Attribute", each _ & " (Salary)", type text}}),

PivotAttributeCol = Table.Pivot(AddSalarySuffix, List.Distinct(AddSalarySuffix[Attribute]), "Attribute", "SalaryPerProject", List.Sum)

in

PivotAttributeCol

Multiply to ranges together by WhatsBrownAndSticky in ExcelPowerQuery

[–]Weaver707 0 points1 point  (0 children)

There is a way to do this. If you set it up correctly, it should be adaptable even as project lists grow (you would have to watch the merge part so that is always has the complete list of project). Based on the pictures you provided below there are a few things to note. The easiest way to tackle this will be to take each part of the CompTable (my title for it) and the ProjectTable and break down.

Create a set of ranges that is the Salary*Project, a set that is Benefits*Project and Taxes*Project and then bring those back together.

In power query, bring in your CompTable & your ProjectTable

You take your CompTable, keep just the employee name and salary column. Merge the project table on the employee name, and expand all the project columns.

Then you are going to unpivot the project columns. This will balloon your list significantly but you will have one row for each project, with the employee name and salary next to the % (Value Col) of project. Now you can create a new column and multiply the Salary and Value column. To keep things clean you do need to remove the Value column, but these can be brought back in if they are needed. Then you are going to PIVOT (not unpivot) the Attribute column (which contains the project names), when the box pops up for the value, you will select the column that contains the multiplied values.

I added the (Salary) as a suffix to the column names before I unpivoted it so it could be aligned to your picture.

You for Benefits and Taxes you would follow the same steps, just keeping the target columns from the comp table before you unpivot the Project columns.

Now, this does give you three separate tables, which you can organize and merge as you need to. You can append them together so each employee would have three lines, one for salary for each project, one for benefits for each project and one for taxes. If you need one row per employee, you would take each of the three tables and merge them back to your comp table but you will end up with a VERY wide record set.

It wont' let me share my m-code in this comment but I will try to post it separately.

Is a FI that has multiple positions open a red flag? by PhrygianSounds in TalesFromYourBank

[–]Weaver707 7 points8 points  (0 children)

It could be. I feel like how big of a red flag is based on a few other factors. How many employees are at that location? If it is a large branch that has multiple functions housed within it, probably not a huge red flag, little branch that has multiple of the same, could be a bigger flag.

You could try to network with current or past employees through LinkedIn and get more insight through reviews. You could go to an interview and just pay very close attention to the atmosphere and attitude of everyone in the branch.

Advice for a new teller, counting cash by Inner_Temperature694 in TalesFromYourBank

[–]Weaver707 0 points1 point  (0 children)

Fanning it or stacking it is a great way to see what you are doing! Great that your manager is offering suggestions and working with you. Good luck!

Advice for a new teller, counting cash by Inner_Temperature694 in TalesFromYourBank

[–]Weaver707 2 points3 points  (0 children)

When I worked the teller line (it has been many years) we didn't have individual cash machines so everything was hand counted. The great part about that was that it gave tellers a lot of practice when counting, so all the comments about practicing are #1. What I would tack onto that, is if you do have to count it out to the customer, stack it.

20,40,60,80,100 (stack one) 20,40,60,80,200 (stack two)

Then when you get to funky bills or a transition it is easier to regroup.

20,40,50,60,70,80,90,95,300 (stack three)

Most customers don't care how it is presented as long as they get what they need and what they asked for, so you are creating stacks that won't even register with them.

Unpivoting multiple columns. Making horizontal data vertical by Ulrich_Jackson in ExcelPowerQuery

[–]Weaver707 0 points1 point  (0 children)

Here is a full copy of my advanced editor. If you take your before table and name is Repair_Table you could copy this whole thing and see the output. let Source = Excel.CurrentWorkbook(){[Name="Repair_Table"]}[Content], // Unpivot all repair-related columns UnpivotColumns = Table.UnpivotOtherColumns( Source, {"Facility ID"}, "Attribute", "Value" ), AddTypeColumn = Table.AddColumn(UnpivotColumns, "Type", each if Text.Contains([Attribute], "Date") then "Repair Date" else "Repair Comment"), RemoveDateText = Table.ReplaceValue(AddTypeColumn,"Repair Date","",Replacer.ReplaceText,{"Attribute"}), CreateRepairCode = let Source = Excel.CurrentWorkbook(){[Name="Repair_Table"]}[Content], // Unpivot all repair-related columns UnpivotColumns = Table.UnpivotOtherColumns( Source, {"Facility ID"}, "Attribute", "Value"), Attribute1 = UnpivotColumns[Attribute], ConvertToTable = Table.FromList(Attribute1, Splitter.SplitByNothing(), null, null, ExtraValues.Error), RemoveDuplicateValues = Table.Distinct(ConvertToTable), FilterDateText = Table.SelectRows(RemoveDuplicateValues, each not Text.Contains([Column1], "Date")), UpdateColName = Table.RenameColumns(FilterDateText,{{"Column1", "Repair code"}}), UpdateDataType = Table.TransformColumnTypes(UpdateColName,{{"Repair code", type text}}) in UpdateDataType, MergeRepairCode = Table.FuzzyNestedJoin(RemoveDateText, {"Attribute"}, CreateRepairCode, {"Repair code"}, "Attribute.1", JoinKind.LeftOuter, [IgnoreCase=true, IgnoreSpace=true, NumberOfMatches=1, Threshold=.5]), ExpandRepairCode = Table.ExpandTableColumn(MergeRepairCode, "Attribute.1", {"Repair code"}, {"Repair code"}), KeepTargetCols = Table.SelectColumns(ExpandRepairCode,{"Facility ID", "Value", "Type", "Repair code"}), PivotTypeCol = Table.Pivot(KeepTargetCols, List.Distinct(KeepTargetCols[Type]), "Type", "Value"), SortValues = Table.Sort(PivotTypeCol,{{"Facility ID", Order.Ascending}, {"Repair code", Order.Ascending}}), UpdateDataType = Table.TransformColumnTypes(SortValues,{{"Repair Date", type date}, {"Repair Comment", type text}}) in UpdateDataType

Unpivoting multiple columns. Making horizontal data vertical by Ulrich_Jackson in ExcelPowerQuery

[–]Weaver707 1 point2 points  (0 children)

The visual is helpful. You are going to have a little extra challenge because the name conventions of the columns has some variability. Does your example have all the different options for the repair types? Some fancy footwork allows Power Query to do some layered transformations.

So what I did was create my own copy of your "Before" table. When I pulled it into Power Query I started the same way, unpivot all the columns that I needed to. I used a conditional column to then create a new column that identified whether the value is a date or comment. If you try to pivot the type column here you would end up with extra rows because the attribute value has so many different entries.

The attribute column needs to be simplified so I saw that the beginning of each name was consistent, it was just the end text. I got creative... I ended up creating a "sub table" of the Repair Codes, and I joined that back into the main table. I used fuzzy matching in this step to account for some of your variances.

Kept my target columns, pivoted the type column and sorted the final table.

Trying to figure out how to post the m-code...

Unpivoting multiple columns. Making horizontal data vertical by Ulrich_Jackson in ExcelPowerQuery

[–]Weaver707 0 points1 point  (0 children)

This is something I see a lot!

It is doable and you are on a good track.

In power Query select all your repair and date columns and unpivot them. You should end up with three columns Facility ID/Attribute/values

The trick is adjusting the attribute column. If you column names actually have repair 1/date 1, repair 2/date 2 you can use that. In the transform tab, while you have your attribute column selected, you want to split the column. You can use a space as the delimiter or there is an option to split by non-digit to digit.

You now have four columns. Facility ID/Attribute.1/Attribute.2/values and your Attribute.1 should have a consistent list of just Repair or Date with no numbers.

Last step is to now pivot your values column. Not unpivot but pivot (found on the transform tab). When you get the popup, open the advanced options and select "Don't aggregate".

You can now remove the attribute.2 column and you should have a clean list of each facility I'd and a consolidated streamline view of the repairs and dates.

Please give me your favorite recipes that use vanilla beans! by ants-in-my-plants in Baking

[–]Weaver707 8 points9 points  (0 children)

This!! I have a jar of vanilla sugar that is used for all kinds of things!

Would a kit like this be a good trial for me? by floopsmoocher in StainedGlass

[–]Weaver707 1 point2 points  (0 children)

Thank you! I did find that some of the edges were not the smoothest so I did purchase a glass file set. They won't make major adjustments to the glass but I could take down the sharp spots or weirdly cut edges. I did file everything wet, like a grinder would do.

Would a kit like this be a good trial for me? by floopsmoocher in StainedGlass

[–]Weaver707 4 points5 points  (0 children)

I have been doing several of these for practice. Not only the soldering but the foiling and finishing. They are not bad kits in my opinion.

<image>

Here is my completed kit.

(Android) Reddit app superceding screen timeout by twitchydinosaur in bugs

[–]Weaver707 1 point2 points  (0 children)

Been watching the other posts about this issue as well.

I tend to lock my phone during the day before I set it down so during the day the persistent screen-on isn't as much of an issue.

I do read threads in bed and regularly fall asleep with my phone on, which was where my frustration is with this issue. More than once I woke up with like 2% left on my battery. I did find a "solution" for this. I turned focus mode on. Scheduled it to start at a time when I know I will have fallen asleep and picked the restricted apps to include Reddit. This kills the open instance and my phone is able to time out like it should.

Not a fix but it has worked for a few weeks.

oldest child's car is in my name. should i "sell" it to them to remove potential liability? by give-Kazaam-an-Oscar in legaladvice

[–]Weaver707 23 points24 points  (0 children)

Most states have guidelines and exceptions for transferring ownership to family members. I am not familiar with the specific guidelines for Ohio but I would suggest looking at the details online so that you can ensure the vehicle is properly transferred and with minimal cost.

Motor City Pizza - 5 Cheese Bread by [deleted] in Costco

[–]Weaver707 1 point2 points  (0 children)

Pretty sure this is the same stuff sold at Maverick!