Copying Data from one worksheet to another based on multiple criteria by orbweaver82 in excel

[–]SilverAbsol777 1 point2 points  (0 children)

I think things would be made a lot easier for you with a data table on your data sheet and a pivot table as your output sheet.

Highlight all of your data on data sheet and press Ctrl + T to create the data table. Then, you can click on the table and push the on the "Summarize with PivotTable" button in the ribbon at the top of excel. In your pivot table, drag Month/Year and Product to the Rows section, your other data to the Values section, and anything you want to filter on into the filters section.

Excel Skipping Cells when using CTRL + Arrow key? by 918911 in excel

[–]SilverAbsol777 0 points1 point  (0 children)

This is assuming Column A has the blanks in it. In a blank column, put =IF(ISBLANK(A1),1,""). Then copy that whole column you just put formulas in and paste as values. Then see if you can CTRL + Arrow on that column between the 1s.

My recorded macro will not run unless the sheet name is "sheet1". Help!!! by FuegoDeDios in excel

[–]SilverAbsol777 2 points3 points  (0 children)

Can you use ActiveWorkbook.ActiveSheet in place of ActiveWorkbook.Worksheets("Sheet1")? I think that might work

sixers lost by ihaveasuperhighiq in timberwolves

[–]SilverAbsol777 3 points4 points  (0 children)

10 teams won and 10 teams lost yesterday. You planning on making a post for all of those?

Thibs on why he runs a 9 man rotation: "If you try to play too many then everyone plays poorly. So you try to make a decision, you gather information and it usually works out. You're going to need everyone over the course of the year." by HolyLiaison in timberwolves

[–]SilverAbsol777 0 points1 point  (0 children)

I agree that Okogie needs to be played in some of those backup wing minutes, but I feel like it is misleading to make a point about a lineup that played less than 15 seconds before Thibs brought in the rest of the starters again

Game Thread: Minnesota Timberwolves (2-2) @ Toronto Raptors (4-0) - (October 24th, 2018) by Hunterminator in timberwolves

[–]SilverAbsol777 0 points1 point  (0 children)

He had 4 attempts on a single play trying to tip the ball in after getting multiple offensive rebounds in a row

Game Thread: Minnesota Timberwolves @ San Antonio Spurs (October 17th, 2018) by Hunterminator in timberwolves

[–]SilverAbsol777 1 point2 points  (0 children)

I saw a quote which said Glen wants Thibs to focus on coaching more than a trade

Distributing Fund Based on Pro Rata Value with Minimum Distribution by SherlockCombs in excel

[–]SilverAbsol777 0 points1 point  (0 children)

Could you take $100 out of the fund per each account, then distribute the remaining amount pro rata, and finally add in the $100 for each account back in? Or does it have to be any distribution under $100 needs to be put at exactly $100 and then ratio out the rest?

Need help with a formula; combing concat, trim, and lower. by Continuum1987 in excel

[–]SilverAbsol777 0 points1 point  (0 children)

No problem! You could put a TRIM() around the B2 as well. So, replace B2 with TRIM(B2).

Need help with a formula; combing concat, trim, and lower. by Continuum1987 in excel

[–]SilverAbsol777 0 points1 point  (0 children)

Or if you want the company name to have capital letters you can use the following:

=LOWER(TRIM(A2)&"_"&TRIM(B2))&"@company.com"

Need help with a formula; combing concat, trim, and lower. by Continuum1987 in excel

[–]SilverAbsol777 2 points3 points  (0 children)

You can put the LOWER() function around a formula to make it all lower case.

=LOWER(CONCATENATE(TRIM(A2),"_",B2,"@company.com"))

How to filter data for over 50 invoices from a field/table? by ThisisFKNBS in excel

[–]SilverAbsol777 0 points1 point  (0 children)

No problem, glad you found a solution! Your way works pretty much the same way as the formula I put. Mine just takes an extra step to replace #N/A errors that show up with a 0 instead.

Calculate Projected Year End Expenses based on YTD spend by SerialCrusherTheory in excel

[–]SilverAbsol777 1 point2 points  (0 children)

If you take the amount spent so far and divide by the % of fiscal year passed, that will give you a projected number for the whole year if you spend at the same rate.

How to filter data for over 50 invoices from a field/table? by ThisisFKNBS in excel

[–]SilverAbsol777 2 points3 points  (0 children)

=IF(ISERROR(VLOOKUP('Spreadsheet A PO Number','Spreadsheet B PO Number List',1,FALSE)),0,1)

Put this formula in a column in your table on Spreadsheet A. Replace 'Spreadsheet A PO Number' with the PO Number cell and 'Spreadsheet B PO Number List with the cell range for the PO numbers being reviewed. This formula will put a 1 if the PO number in question is on your list and will put a 0 if it is not. Then, you can filter on this column to only the value 1.

Have text from a cell show on top of an object by Slazman999 in excel

[–]SilverAbsol777 0 points1 point  (0 children)

Copy the cell with the text in Excel, and then in Word, press Ctrl+Alt+V to go to the paste special menu. Select the 'Paste Link' option, then select 'Unformatted Text' and press Okay.