• 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. vijay.vizzu

    Macro for copying data from sheet"data" to sheet PL

    Dear Nilay Why you are prefering for VBA code to do this. Excel built in functions can do this for you without using the VBA code. Please enter the below formula in sheet "PL" cell B12 and drag it down. =IFERROR(VLOOKUP(A12,Data!$A$3:$B$31,2,FALSE),"") Please inform if anything goes wrong.
  2. vijay.vizzu

    Vlookup between two different files

    Dear Kacyi In your above question, you mentioned "I need to find a way to copy comments I made on the old file", here comments means cell comments ( as yellow color box at the corner of the cell) or just you typed some text in that cell. Please clear to resolve the problem
  3. vijay.vizzu

    how to insert multiple columns before and after a single column

    Dear Santhosh from which column (B,C,D,E), you want to insert one column before(left side) and one column after (right side). I can't able to findout. Please suggest.
  4. vijay.vizzu

    Files in folder get directory info

    Dear Abhijeet, VBA code to work properly, you must first create reference to the Filesystemobject. Tools -> References -> Microsoft Scripting Runtime
  5. vijay.vizzu

    Files in folder get directory info

    Dear Abhijeet I hope the below code will work. Sub FileDetails() Dim fso As New FileSystemObject Dim myFolder As Folder Dim myFile As File Dim i As Integer Set myFolder = fso.GetFolder("D:\ARRAY FORMULAS") ' change the folder path If myFolder.Files.Count > 0 Then i = 1...
  6. vijay.vizzu

    generating report in excel as per attached format

    Dear Santosh I can't able to understand your problem and requirement. Could you please elaborate more? Sorry... :(
  7. vijay.vizzu

    Restric Access to few Sheets to Users in Excel 2010/2013

    Dear rumshar Please have a look at this link. It might be helpful http://www.vbaexpress.com/kb/getarticle.php?kb_id=379 http://datapigtechnologies.com/blog/index.php/forcing-your-clients-to-enable-macros/
  8. vijay.vizzu

    Failure will teach more than the success

    Failure will teach more than the success
  9. vijay.vizzu

    Restric Access to few Sheets to Users in Excel 2010/2013

    Dear rumshar If you are familar with VBA, you can put VBA code at the event of file opening. My idea is, you should force all the users to enable macros before watching the report (not verbally or personally, just use the power of VBA). Your code should force them to enable the macros and you...
  10. vijay.vizzu

    Congratulation NarayanK991 Sir...... 7000 posts.

    Congrats NarayanK991 Sir. :):):) I hope you can always teach and share your knowledge with us.
  11. vijay.vizzu

    Key Board short cut to reach end of file in Multiple worksheets

    Dear Santosh Please open your desired excel, in which you wants to put this macro. Press Alt+F11 to open VBE editor. Then left side there will project explorer. You can see Thisworkbook object. Double click on it to open the editor. Then a blank window will appear. You paste the above code...
  12. vijay.vizzu

    Sumproduct VBA Function

    Dear Ashish Please find attachment. I hope it will resolved your problem. Just click Macro button to fill data.
  13. vijay.vizzu

    combining to worksheets in same workbook

    Dear Krispar Can you elaborate more. What does it mean "combine". If you want to merge all the sheets into one sheet with the same standard structure, please upload sample file with explanation
  14. vijay.vizzu

    How to get formula drop down in a cell

    I think that... it is pivot table
  15. vijay.vizzu

    Ms Access 2010 Tutorials

    Dear Aurelie Thank you so much for your suggestion. I already go through this websites. I preferred Techonthenet.com. Very good explanation and their using. During this search i found another site http://www.functionx.com. Cleared explantion along with example databases. I liked so much
  16. vijay.vizzu

    Ms Access 2010 Tutorials

    Dear All, Can you please suggest me the best online training/tutorial provider for Ms Access 2010 including both beginners and advanced level. I have little bit knowledge in Ms Access 2010 through reading online blogs and books and watching online videos at youtube. But I can't able to apply...
  17. vijay.vizzu

    vlookup depending on two values

    Dear Afaraq If you change date formate, then below will work for you =SUMPRODUCT((A2:A377=F2)*(B2:B377=H2),D2:D377)
  18. vijay.vizzu

    Failure will teach more than the success

    Failure will teach more than the success
  19. vijay.vizzu

    Format cells 'Custom m/d/yyyy' in excel VBA

    I have created small macro... i hope it will help you. Sub CellFormat() Dim cell As Range Dim rng As Range Set rng = Application.InputBox("Select Range", "Range selection", , , , , , 8) For Each cell In rng cell.NumberFormat = "m/d/yyyy" Next End Sub
  20. vijay.vizzu

    insert data from other sheet using data validation(list)

    Please try the below formula in C4 =VLOOKUP($C$3,compAddress!$B$4:$F$6,ROW()-2,FALSE)
  21. vijay.vizzu

    Data Validation with Multiple References

    Please have a look http://chandoo.org/wp/2014/02/13/dynamic-cascading-dropdowns-that-reset/
  22. vijay.vizzu

    Web data extraction: www.mca.gov.in

    Dear Suril Please read this: http://www.excelhero.com/blog/2010/07/excel-partial-match-database-lookup.html I think it will resolve your problem
  23. vijay.vizzu

    Highlight cells which contain Year

    Sorry ... how can we use this trick in countif. like if i want to count the number of cells which are the year 1908. How can i do that
  24. vijay.vizzu

    Highlight cells which contain Year

    thank you so much somendra misra.. It works like charm
  25. vijay.vizzu

    Count excel

    Dear thifu3, You can use =COUNTIFS() to get the results. As per your data range, =COUNTIFS(A1:A5,A11,B1:B5,">0"), in this i used A11 as criteria (5 Years).
Back
Top