Best answer: To create form go to visual basic editor (ALT + F11) >>Insert>> Userform find how to fill controls (text boxes, labels, buttons) into a userform by searching in google When userform is created and make a macro to show that userform on clickin
Best answer: am not sure whether I have understood your question correctly according to me no need of a macro you have validation in the cells E1 to E5 and also F1 to F5 type the following formula in D1 =IF(C1=B1,E1,F1) if there is not entry in E1 or F1 (
Hello, I know little about VBA, but I am trying to do the following: I have numerous text files (no extension) and I need to import only some of the data for all of the files to Excel. All files have the same format, however they may have a different...
Hello, In my Excel there is a column, say, column A, where all the cells are text string such as company names. My task is to filter all the rows where the cells in column A contain the same company names. However, my problem is the company names was...
Best answer: Hi, I have the same challenge, delete every row except for a specified value in col A. I'd like to use the approach listed for the macro, where you highlight a cell's value to keep, and delete everything else. When I pasted in the macro as sh
Best answer: Thanks for that but the two files/workbooks already exist and I am looking for the actual macro that will cut and paste between the workbooks. Regards KM
Hello, I am trying to transfer an array of data from several spreadsheets used by individuals to a "master" spreadsheet that will be stored on a shared drive. How do I transfer the data from an open excel spreadsheet to the closed spreadsheet that is...
Best answer: hi could someone tell e how to connect ms access with ms excel?i need it plsss....
Use Categorizing Data For Excel to organize your Excel spreadsheet. In its database, it invites you to classify your recording to table categories. It lets you handle the filed of your database and extract data from it in order to create a new one....
Excel - If formula sum not blank Issue Solution Note Issue I'm sorry if my question had already been asked before but I can't find any answer in the internet about summing all values that is not blank. For example: Column A...
Excel - IF formulas for Printing and Calculation Issue Solution Note Issue I am trying to get Excel IF formulas to print a text and calculation based on true/false. Such as, if I have some dates, and I dont need to send a notice to a...
[Excel] Countif Formula Issue Solution Note Issue I have one excel file in that Column "B" has the "pending or Closed" Status and Column "C" has "Severity 1, Severity 2 and Severity 3" I want to count in one cell with "Pending...
Best answer: the problem is occurring because of "" "text" To avoid the "" error you can enter below formula =IF(SUM(C2,E2:F2)>0,SUM(N(C2)-N(D2)+N(E2)+N(F2)),"") OR =IF(SUM(C2,E2:F2)>0,N(C2)-SUM(E2:F2),"") both will work fine ....
Best answer: suppose the hyperlink is in A1 in c1 (or any other cell in row 1) type this formula =RIGHT(A1,LEN(A1)-21) suppose other hyperlinks are in A2 A3 etc copy C1 down
Best answer: =IF([cell]>=15,"No Notice",IF([cell]<15,"This department only has "&ROUNDUP([cell],0)&"days left","")) Hope this helps.
Sub Test()
Sheets("Sheet3").Rows("2:10").ClearContents
Sheets("sheet1").Select
Range("A2").Select
Selection.AutoFilter
Selection.AutoFilter Field:=1, Criteria1:=Sheets("Sheet2").Range("A2")
Rows("2:10").Select
Selection.Copy
Sheets("Sheet3").Select
Range("A2").Select
ActiveSheet.Paste
Sheets("Sheet1").Select
Range("A1").Select
Application.CutCopyMode = False
Selection.AutoFilter
Sheets("Sheet3").Select
Range("A2").Select
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
If Range("A2") <> "" Then Call Test Else Exit Sub
End Sub