• 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 Khalid NGO

  1. Khalid NGO

    Extract Dates from longer text string through Power Query

    Hi Waqar, I hope you will find PQ solution, I am sharing formula seems to be working on posted samples...
  2. Khalid NGO

    Convert Dates

    Hi, You can edit your query and Go to File > Options and Settings > Regional Settings > Local (for changing Regional Setting) follow below screenshot. Meanwhile "Stay Home, Stay Safe" :) Regards,
  3. Khalid NGO

    How to convert Cr amount as a positive and Dr as a negative

    Hi, Use this for F column: =IFERROR(SUBSTITUTE(F4,"DR","")*-1,"") and this for Column G: =IFERROR(SUBSTITUTE(G5,"CR","")*1,"") or single formula for both columns: =IFERROR(IF(ISNUMBER(SEARCH("dr",F4)),SUBSTITUTE(F4,"DR","")*-1,SUBSTITUTE(F4,"CR","")*1),"") Regards,
  4. Khalid NGO

    DATA REFLECTING ONLY AVAILABLE PERSONNEL

    Hi Arslan, See the attached file, you can change the status in cell A1 to see results. Following Formula needs to be adjusted as per your actual file range: =IFERROR(INDEX('SHEET 1'!$A$3:$C$99,AGGREGATE(15,6,1/('SHEET 1'!$D$3:$D$99=$A$1)*ROW('SHEET 1'!$D$3:$D$99)-2,ROW(A1)),COLUMN(A1)),"")...
  5. Khalid NGO

    Vlookup with multiple Row conditions

    Hi, If it is okay to have result in separate cells, you can use this in AQ2 and then copy across: =IFERROR(INDEX(ALE!$Q$2:$Q$5,AGGREGATE(15,6,1/(ALE!$A$2:$A$5=$B2)*ROW(ALE!$Q$2:$Q$5)-1,COLUMN(A1)),),"") Regards,
  6. Khalid NGO

    Countif with < or > sign

    Hi, You need to enter wildcard like: =COUNTIF($A$1:$A$10,"*"&D1) Regards,
  7. Khalid NGO

    Ignore error while doing Sumproduct

    Hi Decio, "We are all very ignorant. What happens is that not all ignore the same things." AE Regards,
  8. Khalid NGO

    Ignore error while doing Sumproduct

    The formula posted by decoig is also an Array Formula, will work with Ctrl+Shift+Enter
  9. Khalid NGO

    Ignore error while doing Sumproduct

    Hi, Or use this {array formula} =SUM(IFERROR(A1:A7*B1:B7,0)) {array formula needs to be entered with Ctrl+Shift+Enter} Regards,
  10. Khalid NGO

    Finding MAX value using an Array.

    Hi, Two more solutions (non array) =AGGREGATE(14,6,1/(A1:A12=D1)*B1:B12,1) =SUMPRODUCT(MAX((A1:A12=D1)*B1:B12)) Regards,
  11. Khalid NGO

    Consecutive number with Letter in Front

    Hi, Please check this: =LEFT(A1)&TEXT(MID(A1,2,LEN(A1))+1,REPT(0,LEN(A1)-1)) Again it is based on your provided pattern, it is best to include all possible inputs in initial post, so that members can share targeted solutions. Regards,
  12. Khalid NGO

    Consecutive number with Letter in Front

    Hi, If the pattern is same: =LEFT(A1)&MID(A1,2,LEN(A1))+1 Regards,
  13. Khalid NGO

    Merging Column with Serial Number

    Hi, For Formula based solution, you can use the following in any other empty column: =A2&TEXT(COUNTIF(A$2:A2,A2),"0000") Regards,
  14. Khalid NGO

    some questions on Lookup & Reference formulas

    Hi Pete, As vletm pointed out about the Match Function Syntax, you also need to adjust the range holiday_list to one column, so that the Match function works properly, and the best rule for working with dates is "Always Enter Proper (Number Formatted) Dates". Regards,
  15. Khalid NGO

    Get Dates if the month of which is equal to current month

    Hi, Yes AGGREGATE takes care of CSE in most of the formulas. I am not sure what did wrong, just make sure your range Emp_Name and CSS!$G$3:$G$22 are of same sizes. You can always upload sample file with same structure of original file without any sensitive information, this will lead us to...
Back
Top