• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Search results

  1. S

    date format in [mm/dd] format [SOLVED]

    Hi, One more option. Suppose your date in A1 apply =TEXT(A1,"mm/dd") is formula in B1. Thanks, SK
  2. S

    Move entire row from Source to new worksheet if value found

    Hi Jiujen, You can use Dave code since i have forgot to skip the code if there is no match found. Thanks Dave. Thanks, SK
  3. S

    Move entire row from Source to new worksheet if value found

    Hi Jiujen, Can you please insert a module and paste the below code and check. Sub movedata() Worksheets("sheet1").Select Range("a2").Select Do temp = ActiveCell.Value Worksheets("source").Select Range("a2").Select Selection.CurrentRegion.Select Selection.AutoFilter...
  4. S

    disabling other option buttons

    Hi Prakash, I have given some example with help of that i guess you can create your requirements. 2 codes one for disable and other one for enable Private Sub OptionButton1_Click() OptionButton2.Value = False OptionButton2.Enabled = False End Sub Private Sub Worksheet_Activate()...
  5. S

    Return a value when value is something (VBA, complex formulas may be required)

    Sorry Jason, Try this =IF($B$2=4000,IF($B$9=3%,C12),"") Thanks, SK
  6. S

    Return a value when value is something (VBA, complex formulas may be required)

    Hi, Can you paste the below formula in I6. I guess you looking for this. =IF(B2=4000,IF(B9=3%,C12)) Thanks, SK
  7. S

    Move entire row from Source to new worksheet if value found

    Hi, Can you please upload the same workbook. Thanks, SK
  8. S

    Rename Sheet name for all the excel files within the folder

    Hi Akmalkhan, I am sorry about that. Let wait for our Excel Ninja to provide the corrrect soultion. Thanks, SK
  9. S

    Rename Sheet name for all the excel files within the folder

    Hi, please use the below code Note:Before running this macro make sure all other workbook are closed. This macro will open all the files in the specified path and check the sheet name then it will close with or without save deponds upon the sheet name. Sub openallworkbookandrename() Dim...
  10. S

    How to display record from the listbox in vba

    Hi, Please refer the below link for uploading the workbook. http://chandoo.org/forums/topic/posting-a-sample-workbook Thanks, SK
  11. S

    Rename Sheet name for all the excel files within the folder

    Hi, Can you please create a workbook and paste the below code change the path and run the code. Sub openallworkbookandrename() Dim path As Variant Dim excelfile As Variant Dim i As Integer MyDir = "C:Documents and SettingsABCMy Documents" 'please update your respective path to load the...
  12. S

    VBA to copy rows

    Hi Shaka, Can you please upload the same workbook. Thanks, SK
  13. S

    Password Protected Cells and Worksheet

    Hi s0rmpjmf, To Protect or Unprotect the worksheet use ALT+T , P, P To Protect or Unprotect the workbook use ALT+T , P, W Thanks, SK
  14. S

    Simple Filter

    Hi Maria, Can you try applying filter by manually. If it works then there should be problem with Field or Criteria. Thanks, SK
  15. S

    Help with COUNTIFs or Pivot Table with input Date filter

    Hi, Can you please upload the same workbook. Thanks, SK
  16. S

    find out the names alone from a line

    Thanks Deb & Amrit.
  17. S

    find out the names alone from a line

    Hi, How to find out the names alone from a line. Ex: 1. Senthil Kannan Ram working in abc company 2. vinoth kumar working in xyz company Now i want a formula to extract the names only for 1. Senthil Kannan Ram 2. vinoth kumar Any help. Thanks, SK
  18. S

    Help with Macros and Logic!

    Hi, Can you please upload the same workbook. Thanks, SK
  19. S

    how to adjust print title in macro

    Hi Luke, I tried the above code and it say Header found in row: 36. Thanks, SK
  20. S

    How to add or run Add-in file

    Thanks Hui.
  21. S

    How to add or run Add-in file

    Hi, I have created a macro and saved it as 2007 Add-in file now. how i will add that add-in the activeworkbook or how i will run that particular macro. Thanks, Suresh Kumar S
  22. S

    how to adjust print title in macro

    Luke, It would come in row # 35 to 45 depends upon the output report sometime it would come in 35th row or 40th row. The Header name would be starting with Income. Thanks, Suresh Kumar S
  23. S

    how to adjust print title in macro

    Hi, I have a data where the header may move from 35 to 45 (after running the report may be first time it will be in 35 and second time will come down to 45 )how do i can declare the title in code. By default the recorded macro code taken it as.PrintTitleRows = "$35:$40". Now i want to find...
  24. S

    Calculated column changes formula when pasting into table.

    Hi, Can you please upload the sample workbok. Thanks, Suresh Kumar S
  25. S

    Subtotal formula not refreshing data

    Hi, Use =SUBTOTAL(109, I2:I107) or change the calculation from manual to automatic under formulas menu. Thanks, Suresh Kumar Sa
Back
Top