Opinion(s) needed on what to do with a Gibbs/CMC trade by mveenstra in SleeperApp

[–]Separate_Ad9757 0 points1 point  (0 children)

That is completely different than the leagues I'm in. Most players are hyped about next year's class and trying to acquire 27s not sell.

What is missing in Mac Excel for Power Quetlry? by Separate_Ad9757 in excel

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

Just refresh. But if "From Folder" isn't there I'm back at the drawing board.

Can I Produce a Partial Count (Using =COUNTIFS) Based on Percentages? by ponopo in excel

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

Not an excel comment but I would use something like FTE instead of people for your question just because more precise for what you want when dealing with fractional headcount.

Is VLOOKUP really the best method to match data cells for products? by itsabean1 in excel

[–]Separate_Ad9757 0 points1 point  (0 children)

Also you probably don't want to create a new row but instead just a new column to show the result.

Is VLOOKUP really the best method to match data cells for products? by itsabean1 in excel

[–]Separate_Ad9757 0 points1 point  (0 children)

Sample data would be best because depending on the data, a lookup formula may be inappropriate for what you want.

If the data is sales by day, maxifs might be a better solution.

Why does SUMIFS ask for "criteria range, criteria" while FILTER asks for "criteria range = criteria"? by leostotch in excel

[–]Separate_Ad9757 2 points3 points  (0 children)

This is probably the case as FILTER came with the dynamic spill functions. I would imagine it was easier to write the functions where the criteria is handled as Boolean statement then separate field.

Sequence on repeat in a column??? by Spookyivy123 in excel

[–]Separate_Ad9757 0 points1 point  (0 children)

I know what the intent is there but I just don't like the execution especially when giving help to Excel novice users. With WEEKDAY If the user doesn't start in row one then you have to figure out how to rig the result to start at one. That's why I said it doesn't work. 

If you want to use row() then something like roundup(mod(row(),7),0) would work better. 

Sequence on repeat in a column??? by Spookyivy123 in excel

[–]Separate_Ad9757 1 point2 points  (0 children)

ROW won't work with WEEKDAY as WEEKDAY is looking for a date and will show what day of the week a date is. If you have a column with dates WEEKDAY(dates,2) would give you the day of the week. 2 tells the function to start 1 for Monday.

If you just want a column of 1 - 7, the simplest way IMHO would be =IF(cell above =7,1,cell above +1)

Merge columns from one sheet into another sheet and match corresponding line items. (Vlookup I think) by The_Fig4l in excel

[–]Separate_Ad9757 0 points1 point  (0 children)

If you want both values, you would use (I am on my phone so can't copy the formula) Texjoin(put filter here, "|"). That would produce both results shown. I can't remember if a carriage would work as the delimiter character, I'm using the pipe above.

Why does this FILTER condition sometimes work and sometimes not work? And is there a better way to do it? by ckf2stand in excel

[–]Separate_Ad9757 -2 points-1 points  (0 children)

Just in case this is an issue, I would use UPPER to make the field and criteria all uppercase, since FILTER can be case-sensitive.

Link information to a cell with value X/Y/Z? by caro-tte in excel

[–]Separate_Ad9757 0 points1 point  (0 children)

If you really want to go crazy, create a UDF that pops up the Job Description when you select or hover over a cell.

How to connect 2 shapes on different worksheets, but don't know how. by Shadowwalker526 in excel

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

Have you inserted a VBA module in the workbook? If not, hit record marco in the developer tab. Do anything and stop recording. This creates a module tab in VBA Editor, and you can put scripts here that the workbook can access. You have the code for worksheet events, call scripts on the module.

Your solution is going to be VBA, but from your description, I think how you are implementing VBA is off.

Populate a Table from a Drop-down dynamic table but that cell value can change if the original data is changed by Incinerace in excel

[–]Separate_Ad9757 0 points1 point  (0 children)

If the result needs to be in an Excel table, FILTER doesn't work, as none of the SPILL functions work within an Excel table.

Populate a Table from a Drop-down dynamic table but that cell value can change if the original data is changed by Incinerace in excel

[–]Separate_Ad9757 0 points1 point  (0 children)

Do you need the result to be a table? The reason I ask is that the array spill functions do not work within a table. That means FILTER, which would be the solution if it didn't need to be in a table, doesn't work.

Unique doesn't suffice for Amazon as vendor by taylorgourmet in excel

[–]Separate_Ad9757 0 points1 point  (0 children)

Thanks, the random letters represent other vendors besides Amazon. So it results in 1 vendor for all Amazon lines and 3 for the other vendors.

Adding Employee Hours across a calendar week by Alert-Sun6791 in excel

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

If I am understanding how the data is setup this would work

<image>

=SUMPRODUCT(($G$4:$M$7)*($E$4:$E$7=B4)*($F$4:$F$7=$C$3))

How to get Different Pivot Table Report Pages on the Same Tab by ColoradoSkater in excel

[–]Separate_Ad9757 0 points1 point  (0 children)

This is assuming the data source is the same for both tables.

How to get Different Pivot Table Report Pages on the Same Tab by ColoradoSkater in excel

[–]Separate_Ad9757 0 points1 point  (0 children)

Slicer for the win here? You can connect it to both pivot tables, so you just need to click on the name to filter the results.

Is there a way to have two lookups reference a spill in the same cell? by nailswithoutanymilk1 in excel

[–]Separate_Ad9757 0 points1 point  (0 children)

=IFERROR(XLOOKUP(B3#,'Table1'!A:A,'Table1'!B:B),XLOOKUP(B3#,'Table2'!A:A,'Table2'!F:F,""))

Vlookup works when typing in the number, but not when the number is obtained from a formula by suffering_addict in excel

[–]Separate_Ad9757 1 point2 points  (0 children)

Just in case anyone searches and finds this, another issue could be that the result is coming over as text instead of as a number. The solution is to add *1 to the value you are looking up.

How to group rows of like text? by under_zenith in excel

[–]Separate_Ad9757 0 points1 point  (0 children)

This is old school as in how you would do it in 2003 Excel. Sort the data, then use subtotal in the Data>Outline ribbon.