User Profile
Bennadeau
Iron Contributor
Joined 6 years ago
User Widgets
Recent Discussions
What is "OfficeShredderWacClient"?
Hi, Apologies if this is posted in the wrong hub. Looking at the Sign-ins monitor in Azure AD, I noticed one of my users gets a Successful sign-in every half hour. The application is "OfficeShredderWacClient". Anyone knows what that application is and what it does? This happens day and night and I know the user is not working at night. Did a google (ahem, I mean Bing) search and I can't find a concrete answer. Any help will be much appreciated. Thanks30KViews2likes4CommentsRe: If Formula
Hi TurkiAlhamed, One of the problem with your formula is that you set the "else" portion of all your "IF" to "0". Instead, the "else" portion should be the next "IF" (hopefully it make sense) =IF(AND(K13>=5,K13<10,D8<2000),D8*3,IF(AND(K13>10,K13<15,D8<2000),D8*4,IF(AND(K13>=15,D8<2000),D8*6,IF(AND(K13>=5,K13<10,D8<2000,D8<5000),D8*2,IF(AND(K13>10,K13<15,D8<2000,D8<5000),D8*3,IF(AND(K13>15,D8<2000,D8<5000),D8*4,0)))))) That said, the last 3 "IF/AND" are evaluating cell D18 to be lower then 2000 and lower then 5000. If D18 is lower then 2000, consequently it is lower then 5000 so you don't need to check the lower then 2000. Here's a revised version of your formula with this adjustment... =IF(AND(K13>=5,K13<10,D8<2000),D8*3,IF(AND(K13>10,K13<15,D8<2000),D8*4,IF(AND(K13>=15,D8<2000),D8*6,IF(AND(K13>=5,K13<10,D8<5000),D8*2,IF(AND(K13>10,K13<15,D8<5000),D8*3,IF(AND(K13>15,D8<5000),D8*4,0))))))1KViews1like1CommentRe: Formula error in link to another spreadsheet
Gary_Bostock It seems like a simple vlookup would do the trick here. =VLOOKUP(A47,'[LISTING 2020.xlsx]Sheet1'!$A:$B,2,0) Change "sheet1" for the sheet name where your data is. Change "$A:$B" for where your table is. This reads: "Find the value located in A47 within column A of Listing 2020.xlsx, sheet1. Then return the value located right next to it (in column B). I hope this helps.4.8KViews0likes0CommentsRe: Macro to copy columns if values begins specific text.
Youngmrr Actually, this macro looks at the first 20 columns. Look at line 7: "For j = 1 To 20" if you want to expand or reduce, change 20 to whatever you want. Also, the macro looks at the first 2000 rows. Look at line 8: "For i = 1 To 2000" if you want to expand or reduce, change 2000 to whatever you want.2.1KViews1like1CommentRe: Excell
Hi Patrice355, To rename a column, select the column header and hit "F2" on you keyboard. This will put your cell in Edit mode and you can modify the text. You can also just start typing without hitting "F2". In excel, you can use =hyperlink function. "=hyperlink(link location, friendly name)" See example below. This will make a hyperlink to google but will only show the word "search". =HYPERLINK("www.google.com","search") And I don't know about SqareSpace blog so I can't help with that.956Views0likes0Comments- 1.1KViews0likes0Comments
Re: Macro to copy columns if values begins specific text.
Hi Youngmrr, This should be a good start Sub Coppy() Dim lookfor As String Dim i As Integer Dim j As Integer Dim cellval As String lookfor = "ABCD" For j = 1 To 20 For i = 1 To 2000 cellval = Left(Cells(i, j).Value, 4) If cellval = lookfor Then Cells(i, j).Copy Worksheets("Work").Cells(i, j) End If Next i Next j End Sub You can change the value to look for in row 6. Currently set to "ABCD" This will look cell by cell in a 20 columns x 200 rows grid for anything that starts with ABCD and will copy it in your sheet named "Work". Hope this helps.2KViews1like3CommentsRe: Excel recording everything I type - Possibly something to do with Sheet Views
Hi Will_Peddie That's an interesting issue. Does it happen where ever you type or just in a specific cell? Does it happen in the same spreadsheet if you copy it to another computer? Does it happen with every spreadsheet or just a specific one? Can you share your spreadsheet to help troubleshooting?721Views0likes0CommentsRe: Need for more than 64 levels of nested - Simplify formula
Nikoss You may want to check to make sure your cell formatting match. Number formatting when only numbers are present Currency when it's a $ amount Text for everything else. In both sheets of course. Also, ensure there is no trailing space in your cells (white space at the end or "2016" for example). This will mess up things.20KViews0likes4Comments
Recent Blog Articles
No content to show