• 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. sgmpatnaik

    Userform, submit to generate number in column B

    @Ben Millen Welcome to Chandoo.org Paste the below formula in the Column D1 or where ever =SUM(IF(FREQUENCY(B:B,B:B)>0,)) The Above formula count only unique No. not the duplicate Now Place this code in UserForm Private Sub UserForm_Initialize() TextBox1.Value = Worksheets("Daily...
  2. sgmpatnaik

    SUMIFS based on a list

    @tarynmahon Change this $A$1 to $A1 copy and drag down other wise please upload a sample file Thanks
  3. sgmpatnaik

    MIS Report

    @pankaj Please mention the Exact result which will be come in there in manual figure with that it is ease to give the correct formula Thanks
  4. sgmpatnaik

    INDEX/MATCH for approximate date

    @Marco.Zingariello Please change the Range type in your master book as K:K to K2:K1000 etc hope it will give some thing other wise inform us Thanks
  5. sgmpatnaik

    populating my data onto calendar

    Glad it helps you
  6. sgmpatnaik

    populating my data onto calendar

    @Somendra Misra It will look good or not if we mention the Day also in the Calendar with little bit add in your formula =IF(B15="","",INDEX("Day " & B15 &" - " &$C$5:$I$9,ROWS(J$15:J15),MATCH(J$14,$C$4:$I$4,0))) Thanks
  7. sgmpatnaik

    Copy paste data with certain criteria

    @garyaps Welcome to Chandoo.org group, glad you are here please upload a sample file with you desire requirement. There is lot of tricks to use the copy and paste method with VBA and Formula also. Thanks
  8. sgmpatnaik

    Printing entire workbook

    @DashboardNovice Place This Code in the Command Button and press Private Sub CommandButton1_Click() Sheet1.PrintPreview True For i = 1 To Worksheets.Count strRes = MsgBox("Do you want to print " & Worksheets.Item(i).Name, vbOKCancel, "Print Preview") If strRes = 1 Then...
  9. sgmpatnaik

    Multiple meetings and actions tracker

    @Richard Welcome to Chandoo.org, glad you are here Some of your requirement is done by formula and some to be use with VBA for export the PDF. It is better to upload a sample file with your desire required to understand before you start a point please check this link...
  10. sgmpatnaik

    Where to find our old Threads and Book Marks from the Old Forum

    Hi SirJB7 After Long time we can C you, Glad you are back. and finally i got the thread which i start this thread http://chandoo.org/forum/threads/run-excel-file-only-on-designated-computer.9508/ actually in our profile page we can't get all the threads which we started or replied
  11. sgmpatnaik

    Help with a Data Entry form

    @DMA Try The Below Code Sub UpdateLogWorksheet() 'http://www.contextures.com/xlForm02.html 'code by Dave Peterson and modified by cdbauer1 'Make sure that your column headers on the PartsData tab go in the order of the Data Validation list and that they are identically named Dim historyWks...
  12. sgmpatnaik

    VBA: convert text to Upper case after leaving the cell

    To Post codes use the codes as before code ([)code(]) after code ([)/code(]) Don't use this () Hope it clear
  13. sgmpatnaik

    Run code on two if statements

    @ManuGrim can you please elaborate the problem what do you want to express exactly
  14. sgmpatnaik

    Run code on two if statements

    @ManuGrim Please Change Your Code to This Sub Worksheet_change(ByVal Target As Range) If Target.Address = "$C$1" Then Select Case Target.Value Case Is = "House" Sheet1.Range("D:ZZ").EntireColumn.Hidden = True Sheet1.Range("D:F").EntireColumn.Hidden = False Case Is = "Car"...
  15. sgmpatnaik

    Find and replace text

    Glad It Worked
  16. sgmpatnaik

    Find and replace text

    @leimst Try the below code Sub Evaluate_Data() Dim i, j, LastRowSh1, LastRowSh2 LastRowSh2 = Sheets("Reference").Range("A" & Rows.Count).End(xlUp).Row LastRowSh1 = Sheets("Data").Range("A" & Rows.Count).End(xlUp).Row For i = 1 To LastRowSh2 For j = 1 To LastRowSh1 If...
  17. sgmpatnaik

    Where to find our old Threads and Book Marks from the Old Forum

    No Luke I can't remember the links because they are too old and i try to remember they are but i can't now. it's ok no problem when i remember then sure i will knock your door bell One more thing, for what i am searching is i have created some excel files and i want these files are run only...
  18. sgmpatnaik

    Where to find our old Threads and Book Marks from the Old Forum

    Hi Luke Thanks for your Replay, sorry i can't remember that and i tried to search with few wards but i can't, and one more thing in my book mark there is one thread which is hui replied for restrict the file to work in another system with IP address or what any help about this Thanks
  19. sgmpatnaik

    Where to find our old Threads and Book Marks from the Old Forum

    Hi I have Small Doubt that is how to find our Book Marks and Important Subjects which was settled in our Old Forum. Due to i have some important books are in there but i can't find them here and in my profile too Kindly Suggest me about this Thanks SP
  20. sgmpatnaik

    Convert numbers to Text

    @Sathish it's give the hole value as 9.11E+14 so there is little change Select Whole Column - > Ald +D+E - > Next - > Next - > Select Text - > Finish
  21. sgmpatnaik

    Convert numbers to Text

    @kumar Try this in B1 and copy down =IF(ISTEXT(A1),A1,IF(ISNUMBER(A1),TEXT(A1,"0")))
  22. sgmpatnaik

    Convert numbers to Text

    @Some it's give the same result of edited cell not difference
  23. sgmpatnaik

    Convert numbers to Text

    @kumar Select your range and Format them as number and remove the decimal placess in number format
  24. sgmpatnaik

    I want files & folder protected

    @Abhijeet Why not you hide the Folder and sub folders from option of Folder and Search Option 1. First select the folder which you want to Hide 2. Right click on the Selected Folder 3. Select Properties 4. In the General Option you can find the Hide and Read only Access Now your...
Back
Top