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

Recent content by imgonna

  1. I

    Webarchive to Excel

    Hi Coolkiran Love this problem -- not being at a Mac right now, I can't test the solution. The "issuse" is the .webarchive format. 1) Convert .webarchive to .html with (on mac) textutil -convert webarchive whatever.html 2) Then in Excel link the whatever.html as a data source Your file...
  2. I

    SINGLE CELL ENCRYPTION

    I've used this in the past: http://chandoo.org/wp/2009/06/05/hide-cell/ Cheers Glen
  3. I

    Using Excel to find Lat and Long from a street address (geocode)

    In Excel 2013 this can be achieved with a combination of: A1=WEBSERVICE("http://maps.googleapis.com/maps/api/geocode/xml?address=POSTCODEHERE+,+&sensor=false") > replace POSTCODEHERE with your post code / zip To extract the latitude B1=FILTERXML(A1,"//result/geometry/location/lat")...
  4. I

    XML Data import

    Hi Shaun Pulling data from XML is something I've done a fair bit - and the way you are going about it was the way I used to do it until 2 things: 1) Excel 2013 - WEBSERVICE function - pulls in the XML feed directly and then you can extract from the XML tree. BUT that wont work for you as...
  5. I

    How to link two files correctly?

    Hi The simplest way is to protect the source files from changes so that this can't happen. Cheers Glen
  6. I

    Replace zeros, #N/A and #DIV/0 with a text message like missing data without o

    Hi Not sure you can do this. Conditional formatting will let you trap and error and alter the cell format: "=ISERROR($B$2)" for example and set the cell to FILL with RED and RED Text .... Cheers Glen
  7. I

    Splitting text/authors name

    Hi Why do you want to do this - I ask as there might be a different way to achieve what you are looking for. For example, do you want sort by Author? Cheers Glen
  8. I

    Does anyone know how to import a QIF file into Excel?

    QIF - as in Quicken? Never used it, but: http://lcbell4.tripod.com/softwareman4life/qif_to_csv_converter/qif_to_csv_converter.html Seems easy enough. Glen
  9. I

    Checking cell contents

    Hi This is a one shot deal - right? IE this is not a working spread sheet, you just want to clean the data so you can analyse the results? I would: 1) Start again 2) Use the DATA : Text to Columns function 3) Delimited with , and space : Treat Consecutive delimiters as one This will...
  10. I

    Checking cell contents

    Hi Can you post a sample of the spreadsheet so that we know exactly what we are dealing with. Dropbox or other.... Cheers Glen
  11. I

    I want to download free sound driver for my desktop.

    Hi At risk of offence - Google is your friend. I don't mean to be awkward. Cheers G EDIT: OK - I didn't look where this was posted. Sorry for my "Mr Grumpy" reply.
  12. I

    What else if not IF ?

    Hi Assuming that the list of dealerships starts from A2. Put list of Main Delerships (Mazada etc) into D2 downwards. In E2 place: =ISNUMBER(LOOKUP(9.99999999999999E+307,FIND($D$2:$D$999,A2))) This checks the string in A2 against the list of dealerships in D2:D999 (Make sure there are no...
  13. I

    hyperlink excel to word

    Hi In WORD define the place that you want to JUMP to as a BOOKMARK -- in your case highlight December and INSERT BOOKMARK. Name the bookmark as December. In Excel, when you insert the hyperlink linking to the document, add #December after the file name. When you click on the link in...
  14. I

    Comments Indicator

    Hi Interesting question - and one I had never considered. http://www.contextures.com/xlcomments03.html#Indicator ... has an alternative to number the comments with a rectangular box and inset number. Glen
  15. I

    Make a part of a worksheet to pdf ?

    Hi Isn't this as simple as Print Selection and select PDF as the printer? Is the selection you want to print a named range? Use the macro recorder function to capture the steps and view the code. Cheers Glen
Back
Top