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

    Excel 2016 crashes when opening Conditional Formatting

    Hi, Eloise T! This is the 3rd post, July 24th... had tried that and could have solved the issue 18 days ago. Regards!
  2. SirJB7

    Macro Or Formula

    Hi, Tom90! A way to do it with formulas is this: At any cell: =SI.ERROR(DESREF(Hoja1!A1;;-8+CONTARA(Hoja1!1:1));"") -----> in English: =IFERROR(OFFSET(Hoja1!A1,,-8+COUNTA(Hoja1!1:1)),"") Then copy across and down as required. Regards!
  3. SirJB7

    how to search Individual column (text inputs) in excel

    Hi, Izhar! Check the updated file, code added for worksheet change event: Private Sub Worksheet_Change(ByVal Target As Range) ' constants Const ksOp = " < = >" Const ksRng = "FilterList" ' declarations Dim sOp() As String Dim rng As Range Dim I As Long, J As Long, K...
  4. SirJB7

    Macro Or Formula

    Hi, Tom90! Consider uploading a sample file. It'd be easier to understand for people who might be able to help you. Include indication of the input data, the attempted solution (formulas, code) and the manually written expected output data as example. Thanks. Regards!
  5. SirJB7

    how to search Individual column (text inputs) in excel

    Hi, Izhar! Give a look at the uploaded file. It uses cells instead of text boxes, filter expressions should be put in full condition format (carlsberg for carlsberg, *carlsberg for ending in carlsberg, carlsberg* for starting with carlsberg, *carlsberg* for containing carlsberg... <1000 for less...
  6. SirJB7

    How to add font and font size module

    Hi, Eloise T! Beware if it's the roadrunner disguised as train driver and you're still playing the coyote role. Regards!
  7. SirJB7

    Find closest smaller and larger value to a given number

    Hi, azumi! In your uploaded workbook data range at column A goes from A1:A7 and formulas use A2:A8. Output formulas at D4:D5 are array formulas, when both of them could be normal ones. Besides, you're using "<" and ">" which may be a request interpretation. westend9876 should go for "<=" and...
  8. SirJB7

    Rows to Columns

    Hi, mithil1! Just missing worksheet qualification (in bold red): =INDICE(Hoja1!$A:$A;(FILA()-1)*5+RESIDUO(COLUMNA();5);1) -----> in English: =INDEX(Hoja1!$A:$A,(ROW()-1)*5+MOD(COLUMN(),5),1) Proceed as described above. Regards!
  9. SirJB7

    Copy row to new sheet that matches criteria

    Hi, Kellis! Check if this is suitable for you, the first part (JLL file) does something very similar to your requirements. http://chandoo.org/forum/threads/copy-data-from-various-sheets-onto-a-master.35180 Regards!
  10. SirJB7

    Matching data source from 2 sheets and drawing data from 1 sheet

    Hi, VincentF! Check this threads, maybe you find something that fits your requirments: http://chandoo.org/forum/threads/copy-data-from-various-sheets-onto-a-master.35180 http://chandoo.org/forum/threads/matrix-to-list-database.35258 Regards!
  11. SirJB7

    How to add font and font size module

    Hi, Eloise T! Where shrivallabha wrote one, please read two or three. I.e., read more & write less. :p Regards!
  12. SirJB7

    Macro Help on the code on 64 Bit systems

    Hi, Nandakumar! Here you have an example of how to convert declarations from 32 to 64 bits Excel versions or how to use them both. As I don't have any machine at a hand that runs Excel x64 I'm afraid that I won't be of further help. Option Explicit #If VBA7 Then Private Declare PtrSafe...
  13. SirJB7

    Copy a row to new ws when condition is met on source worksheet

    Hi, Frank Bacchus! Give a look at the uploaded file. This is the VBA code for worksheet Issues object: Option Explicit ' global constants Const gkiFilter = 4 Const gksFilter = "Completed" Private Sub Worksheet_Change(ByVal Target As Range) ' constants ' declarations ' start...
  14. SirJB7

    Password breaker

    Hi, sms2luv! The trick of the 1-byte change with an hex editor works only for .xls files if I far as I remember. Later with .xlsx file structure it doesn't work anymore. These new files have first structure level of .zip/.rar files, just rename any *.xls? file to those extensions and you're...
  15. SirJB7

    Copy data from various sheets onto a master

    Hi, emmatm! Give a look at the uploaded files, they're not fully tested but that's your homework. Just advise if any issue. Regards!
  16. SirJB7

    Rows to Columns

    Hi, mithil1! In a new worksheet, in A1: =INDICE($A:$A;(FILA()-1)*5+RESIDUO(COLUMNA();5);1) -----> in English: =INDEX($A:$A,(ROW()-1)*5+MOD(COLUMN(),5),1) Copy across to D1 and down as required. Regards!
  17. SirJB7

    How to write out common pairs from a list

    Hi, dankos233! For the letters sample, shouldn't these be the pairs? a,d a,c b,d e,d And these for the numbers? 10,80 42,45 10,26 10,45 Regards!
  18. SirJB7

    Hello .. Introduce yourself

    Hi, dankos333! Welcome to Chandoo forums! Checked this yet? http://chandoo.org/forum/forums/new-users-please-start-here.14/ About your question, you've posted it the wrong forum, as this is just a place to introduce yourself to the community. Would you mind introducing yourself here below and...
  19. SirJB7

    How to add font and font size module

    Hi, shrivallabha! Never say never again... Eloise T has a lot of creativity... Regards!
  20. SirJB7

    Matching dates

    Hi, Ufoo! Maybe I misunderstood your question but... Excel store dates as integer numbers starting for 01/01/1900 as 1. That's about storage. Excel show stored dates according to the cell format, i.e., it maybe dd/mm/yyyy, mm/dd/yyyy, dd-mmm, including dd, mmmm... Taking the above date as...
  21. SirJB7

    Opening VBA File Error. how to fix this?

    Hi, MonioDee! As Hui asked you, do you have backups of the original .xlsm file? Regards!
  22. SirJB7

    How to add font and font size module

    @shrivallabha Hi! Don't tell me that I didn't tell you... :rolleyes: Regards!
  23. SirJB7

    Pull/Copy specific data columns by searching headers (dynamic)

    Hi, Slimline! Glad you solved it. Thanks for your feedback and welcome back whenever needed or wanted. And a general advice any time you have issues with code (even more if you modify a provided code that was working), debug it line by line with F8 from the first to the last line, checking the...
  24. SirJB7

    FUNCRES.XLAM hangs up opening Excel

    Hi, Derek B! From Excel menu, File, Help, and you get a bunch of things including version. If those folders are empty and the problem persists after uninstalling and reinstalling the add-in, I'd go for Office uninstallation and reinstallation. Regards!
  25. SirJB7

    Conditional Formatting issue...

    Hi, Eloise T! At the edition or input bar, either if you press the "f(x) " at the left or if you input "=<function>(" (unquoted) you're led to the function built-in help, which is classified by function type. There you can read the related help, and as you type the formula, you're prompted for...
Back
Top