• 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. Abhijeet R. Joshi

    PDF to excel convertor

    Hi all, I am trying to convert a pdf file to excel without any installation of software since my company policy does not allow to install any external software. Problem one: could open the pdf and copy to excel, but only copies the first page and not the rest. Problem two: to bypass problem...
  2. Abhijeet R. Joshi

    New workbook not taking cell value from itself to Save / SaveAs

    What version of excel are you using? For me it worked fine with excel 2016.
  3. Abhijeet R. Joshi

    New workbook not taking cell value from itself to Save / SaveAs

    save the file as ".xls" that should work fine. .SaveAs filename:=Path & fname & "_" & Terminal & ".xls"
  4. Abhijeet R. Joshi

    VBA code to delete emails after a pre-defined mailbox size is reached

    Hi there, I am looking for potential solution to one of my problems: Problem: Huge mailbox sizes which need to be reduced. Idea: create a VBA code to automatically delete the oldest emails from said folders once the overall mailbox size reaches 30GB, deleting emails from archival folder...
  5. Abhijeet R. Joshi

    Chandoo. org mobile Application

    Is there a potential that chandoo.org would come as a mobile application as well to have more easier access to the forum?
  6. Abhijeet R. Joshi

    Split string into multiple columns based on integers and uppercase

    @bosco_yip , the formula is quite interesting. How does the "-" symbol make the formula get the value?
  7. Abhijeet R. Joshi

    (RT) - VBA to convert the range B in number format??

    Rohit, do you have the macro and using it for the copy paste OR you need the syntax for one? Also probably did you try to change the format of the column?
  8. Abhijeet R. Joshi

    Comparing required and available capacity with usage - need formula help

    I does not sound quite clear to me, probably an example should suffice..
  9. Abhijeet R. Joshi

    Congratulations Hui... on your 6,000th post

    Congrats Hui!! Many more to go....:)
  10. Abhijeet R. Joshi

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

    Wulluby, Have you mentioned a specific selection before the formatting? would it be possible for you to mention the whole code?
  11. Abhijeet R. Joshi

    Help me genuises to create custimized page breaks!!!

    iRasim, Basically, the above code that you have mentioned will add pagebreaks between each rows. For instance, you selected that A1:A5 so that will add page breaks to all the rows between A1:A5. It completely depends what range you select, however this will not be as per criteria rather its...
  12. Abhijeet R. Joshi

    Opening file by username & password

    Ok, so firstly you will need to add a userform, to do that below is the procedure: 1. Goto the visual editor(alt+F11) - insert - userform 2. If you are not able to see the toolbox then goto View-Toolbox 3. From the toolbox add a combo box & a textBox alongwith two buttons. 4. Caption the...
  13. Abhijeet R. Joshi

    Opening file by username & password

    Yes Amit, this can be done using the workbooks.open module You have to add a userform to this module to track the user ID & password and then if valid credentials then pass the details to column K. Let me know if you require any help in building the macro code.
  14. Abhijeet R. Joshi

    Creating a seperate list without blanks

    Hi Aurum, I didnt had a look at your/Somendra's attachment, but as per what I understand from a list of True/False values you wish to get the desired ones only. So if you are ok with using VBA, here is the code you can try (Some tweaks might be required): Sub blanks_del() Dim drc As Long drc...
  15. Abhijeet R. Joshi

    Match function not what I need

    Hi John, I am not fairly sure if I follow you, do you mean you want the counts in Cell AF14? Or do you want to to get the position of the first number from the Col.Q?
  16. Abhijeet R. Joshi

    How do we display today, yesterday,tommorrow based on date

    Hi BK LAAL, Considering that your date field is in cell A1 and you wish to do this in excel itself, you can use the below: =IF(TEXT(A1,"mm-dd-yy")=TEXT(NOW(),"mm-dd-yy"),"TODAY",IF(TEXT(A1,"mm-dd-yy")=TEXT(NOW()-1,"mm-dd-yy"),"YESTERDAY",TEXT(A1,"mm-dd-yy"))) Please let us all know if this...
  17. Abhijeet R. Joshi

    Userform with progress bar changing colours

    I had tried this earlier, this is not changing colors but a regular progress bar..trying referencing it... Option Explicit Private Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long) Const PI = 3.14159265358979 Sub DemoProgress1() Dim intIndex As Integer Dim sngPercent As...
  18. Abhijeet R. Joshi

    Happy New Year

    Thanks and wish you the same....:cool:
  19. Abhijeet R. Joshi

    Capturing the second impression:

    Thanks Sachin and Deb....those formulas work great... @deb: Nice signature....:)
  20. Abhijeet R. Joshi

    Capturing the second impression:

    Hi Luke, Was just going thru my old threads and have a small query on the above mentioned by you... Say we are not sure about the instances but want to capture the text after the last instance? Example: (Mike/Alpha/Charlie/Foxtrot) :here I want to capture only after the text after the last...
  21. Abhijeet R. Joshi

    Use VBA input box to rename current sheet

    SirJB7 has rightly mentioned that you should declare response as "variant". @SirJB7 : Can you emphasize on the use of option explicit? Even I am not aware of its advantages...:)
  22. Abhijeet R. Joshi

    Use VBA input box to rename current sheet

    Works fine for me.. Have you copy pasted the whole code? Or just a bit of it?
  23. Abhijeet R. Joshi

    Use VBA input box to rename current sheet

    Hi Kevin, Try using the below: Sub Sheet_Nm() response = InputBox("Name of the Sheet?", vbOKCancel) If response = False Or response = "" Then MsgBox "Invalid Name" Exit Sub Else ActiveSheet.Name = response End If response = "" End Sub
  24. Abhijeet R. Joshi

    Sumif calculation difficulties

    =IFERROR(SUMIF(Sheet2!$A$1:$A$3,Sheet1!D2,Sheet2!$B$1:$B$3)-(SUMIF($D$2:$D2,D2,$F$2:$F2)),-(F2)) Works fine and give the correct results...
  25. Abhijeet R. Joshi

    A suggestion...

    I like the new Tip above the commenting window...this will remind the people to add the VB code in the correct window for right presentation...Good update...
Back
Top