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

    MS Outlook - check subject line by VBA (in excel)

    As Marc Said + I am not expert in Access.
  2. Deepak

    1 to 10 - Need to sum the number from 1 to 10

    Mathematical formula for the SUM ((upper+1-lower)*(upper+lower))/2
  3. Deepak

    Aligning data automatically in an excel sheet

    What i suggest! Copy-paste or import data in excel & then use formula in layout to grab the values!! =IFERROR(VLOOKUP($A3,OFFSET($F$1,LOOKUP(,-1/($F$2:F3="rid"),ROW($D$2:$D3))-1,,5,4),COLUMN(),0),0)
  4. Deepak

    Copy same formula into other columns

    Two alternatives! First : - Copy paste the formula & select Link Cells Second :- VBA
  5. Deepak

    Find the Matching Erp No for the Given Names

    http://www.k2e.com/tech-update/tips/431-tip-fuzzy-lookups-in-excel
  6. Deepak

    need to create given number of row record

    Ya! Pls compare the outputs.
  7. Deepak

    Interesting/Useful _VBA/Excel links over the internet

    A comprehensive list of Excel 4 macro syntax and examples - in a free eBook. https://www.myonlinetraininghub.com/excel-4-macro-functions
  8. Deepak

    Trouble dealing with lastrow in my script

    Check it. Sub Json_Data() Dim http As New XMLHTTP60, html As New HTMLDocument Dim Argstring As String, str As Variant Dim N As Long, P As Long, vault As Variant, converted As String Dim p_val As Object, post As Object, posts As Object, elem As Object Dim source As Object...
  9. Deepak

    Removing duplicates with conditions

    I didn't find any country name in col C. Are u looking for VBA approach or formula!
  10. Deepak

    Counting duplicates

    Expected out is missing in xl buddy.
  11. Deepak

    Add Pass/Fail values from summary data to table

    If your "Failing Values" will be like as below then it will ease else seems :p Failing Values -20, -21, -22, -23, 20 -22, -23, 22 - -22, -23, 22, 23 -20, -22, 20, 22 -22, -23, -24 - -20, -22, 20, 22 -21, -24, 21, 24 -22, 22 -22, -23, 22, 23 -23, 23
  12. Deepak

    Counting duplicates

    Expected output pls! Pls upload xl file with explanation!
  13. Deepak

    Interesting/Useful _VBA/Excel links over the internet

    A 2 Z Guide for date & time. https://www.myonlinetraininghub.com/excel-date-and-time Download files!! https://d13ot9o61jdzpp.cloudfront.net/files/excel_date_time.zip
  14. Deepak

    Filter as you type for two words

    I don't understand the issue behind the two words.Pls share a sample file.
  15. Deepak

    Import text from huge text file into sheet columns

    Do you want to import all the rows to xl as same is not designed to store such large database. My recommendations- Either use Access or other software to filter the data in small parts.
  16. Deepak

    Find and highlight the two closest values within a row

    I didn't understand the query but this might help. =MIN(C13,E13,G13,I13,K13)
  17. Deepak

    xls bug - help for solving it !!

    Do you think we have direct access to your pc to open that link. Pls share a open link so that we can visualize it.
  18. Deepak

    Use of /s while coding

    Sometimes collection objects are known by a extras 's' depending how same is written in coding language. Worksheet for a single sheet but worksheets for collection/array of sheets. Workbook for a single xl but workbooks for collection/array of xls. But range is not to be written as ranges...
  19. Deepak

    Multiple Users Login Form in Excel

    Pls don't Duplicate the query but you can share the link. https://chandoo.org/forum/threads/userform-login-for-multiple-level-user-customized-spreadsheet.24485/#post-213987
  20. Deepak

    Userform Login for Multiple Level User - Customized Spreadsheet

    Few more enhancement...
  21. Deepak

    Userform Login for Multiple Level User - Customized Spreadsheet

    Sorry! There was typo error! Change it. For Each rng In Sheets(userDB).Range(SheetRange).Resize(1).Offset(myFind.Row - 2) If rng.Value <> "" Then If Evaluate("ISREF('" & rng.Value & "'!A1)") Then If Sheets(rng.Value).Visible <> -1 Then Sheets(rng.Value).Visible = -1...
Back
Top