Hi, I want some help..I want to subtract sick hours from the total hours, so it should be as, if it is mentioned as sick in one cell then deduct the sick hours from the total hours. Start End Hours TD 14:00 22:00 8.00 Sick / XD
@AminAbdullah-d8n19 күн бұрын
how i can get the torow and tocol functions?
@excelkidКүн бұрын
Hi, only Microsoft 365 subscribers can use these functions.
@أمين-مكي20 күн бұрын
It's perfectly working.. But I can't sum the results and I can't use TOROW Function because it's not working.
@excelkidКүн бұрын
Hi, only Microsoft 365 subscribers can use these functions.
@kathleengallinger251921 күн бұрын
Brilliant - thank you!
@TedMulder21 күн бұрын
The search function returned the number 35, when I copied it down - it gives me a 35 for every row - even though that is incorrect. Next Row should be 42... Why is it doing this?
@shannonyork530022 күн бұрын
Hi, I would really like to have this SumCellsByColor function, but I use Excel for Mac. Do you have an Excel Mac version? Thank you.
@excelkid21 күн бұрын
Hi, we are working on the Mac version.
@Bomberboybrad24 күн бұрын
didn't work for me, got name error
@excelkid24 күн бұрын
Please check the examples: exceldashboardschool.com/sum-every-nth-row/
@R4jkum4r27 күн бұрын
Sir make a video for the FILTER function also. It really helps alot Thank you!
@davidMW00727 күн бұрын
I have Office 365. I tried to use the SUMTEXT function, but my Excel apparently does not recognize that function. It says "this formula contains unrecognized text". I tried a basic SUM function and it is recognized easily. Here is what I am using: =SUMTEXT(C2:C500,"American",N2:N500,0). Is there an add-in I am supposed to download and add to Excel? Also, what's the difference between this and using SUMIF?
@excelkid27 күн бұрын
Hi! If you want to use the SUMTEXT function, you can use our free add-in: exceldashboardschool.com/custom-functions-add-in/ Visual Analytics Ltd. is committed to providing secure and trustworthy software solutions. To this end, our company holds a valid Code Signing Certificate.
@kevinmontanez624228 күн бұрын
COLORMATCH function is not working. Idk, it always returns #NAME? error. I exactly copied your formula.
@excelkid28 күн бұрын
Hi, COLORMATCH is a custom function. You can check how to use it. exceldashboardschool.com/custom-functions-add-in/ Visual Analytics Ltd. is committed to providing secure and trustworthy software solutions. To this end, our company holds a valid Code Signing Certificate.
@krunal6600Ай бұрын
Hi can you plz help the org chart add in link is missing from the website
'SUMBYFONTCOLOR' But there is no such function in Excel
@excelkidАй бұрын
Excel has no native support to reach the object model. This is the reason why we published a custom function library. exceldashboardschool.com/custom-functions-add-in/
@rioleksa6784Ай бұрын
This is exactly what i am looking for. Thanks a lot buddy
@injamamul_huqАй бұрын
Hey!! I can't download the dashboard. can you help please?
Sir, 28 Text-3,text-5 1 1 How to sum this format vertical
@excelkidАй бұрын
Hi, here is the VBA code of GETNUMBERS function. You can extract all numbers from a given cell. After that, simply sum the cells. Function GETNUMBERS(str As String, Optional n As Variant) As String Dim numArray() As String Static rgx As Object, matches As Object Dim result As String Dim i As Integer ' Ensure the RegExp object is created only once for efficiency If rgx Is Nothing Then Set rgx = CreateObject("VBScript.RegExp") End If ' Setup the regular expression to find numbers, including decimals With rgx .Global = True .pattern = "\d+(\.\d+)?" ' Matches sequences of digits and decimals Set matches = .Execute(str) End With ' If there are no matches, exit the function If matches.count = 0 Then GETNUMBERS = "" Exit Function End If ' Populate the array with the matches ReDim numArray(matches.count - 1) For i = 0 To matches.count - 1 numArray(i) = matches(i).Value Next i ' Determine the output based on the 'n' parameter If IsMissing(n) Then ' Join all numbers with a comma and space as delimiter result = Join(numArray, ", ") ElseIf n = "F" Then ' First number result = numArray(LBound(numArray)) ElseIf n = "L" Then ' Last number result = numArray(UBound(numArray)) ElseIf IsNumeric(n) Then ' Nth number, if the index is valid If n > 0 And n <= matches.count Then result = numArray(n - 1) Else result = "Invalid Index" ' or you can set result to "" to indicate no match End If Else result = "Invalid Argument" ' or you can set result to "" to indicate error End If ' Return the result GETNUMBERS = result End Function
@sav1618Ай бұрын
Hi am trying to design a payroll in excel, so for example if i add a payroll number in any order on the column how can the payroll number identify a persons name. thank you
@gianneyeung6155Ай бұрын
This formula will give you 1 as the result if Excel cannot find a unique value. I have to use an IF formula on top of what you suggested to show the accurate result. Can you look into it and adjust your formula?
@excelkidАй бұрын
This formula counts the number of unique items with the size "Small." However, as you mentioned, if there are no unique items found, the result might be misleading. To handle this scenario, we can add an IF statement to display a more accurate result when there are no matches. Try using this adjusted formula: =IF(COUNTA(UNIQUE(FILTER(B3:B36, C3:C36="Small"))) = 0, "No unique items found", COUNTA(UNIQUE(FILTER(B3:B36, C3:C36="Small")))) This formula will return "No unique items found" if there are no matching unique items for the criteria. Otherwise, it will return the correct count. Let me know if this resolves the issue!
@jamescooper5153Ай бұрын
How do I do it with multiple targets? I have a column of checkboxes and I want the text in the cell next to these boxes to change colour depending if they are TRUE or FALSE. Do I need to create a rule for each row?
@RussellChou-w7dАй бұрын
I also do not have the date between formula. But I'm also looking to return a count of a specific condition. I tried using the countif function as opposed to the if function, but i'm getting errors. Any suggestions?
@excelkidАй бұрын
Hello, Equivalent Formula: =IF(AND(B3>=$E$3, B3<=$F$3), "Yes", "No") Explanation: AND(B3>=$E$3, B3<=$F$3): This checks if the date in B3 is greater than or equal to the start date (E3) and less than or equal to the end date (F3). If both conditions are true (meaning the date is within the range), the IF function returns "Yes". If either condition is false, the IF function returns "No". This formula will give you the same result as the DATEBETWEEN UDF but using only standard Excel functions. DATEBETWEEN is a special function and is part of our free function library: exceldashboardschool.com/custom-functions-add-in/
@aprintojoss8079Ай бұрын
Can we sort in multiple criteria with SORT function ? Example column name on a table : "SALES NAME"; "PROFIT"; "LOST" First criteria is by highest PROFIT Second criteria is by LOST So the first rank is who has HIGHEST PROFIT but with LESS LOST ...
@excelkidАй бұрын
Yes, you can use the SORT function in Excel to sort based on multiple criteria. Here's how you can structure it based on your example: If you have a table with columns like Sales Name, Profit, and Lost, and you want to sort by: Profit in descending order (highest to lowest) & Lost in ascending order (lowest to highest) You would set up the SORT function as follows: =SORT(TableRange, {ProfitColumnIndex, LostColumnIndex}, {-1, 1}) Here's a breakdown of the formula components: - TableRange: This is the range of your entire table. - ProfitColumnIndex: Replace this with the column number for the Profit column within TableRange. - LostColumnIndex: Replace this with the column number for the Lost column within TableRange. For example, if Profit is in column 2 and Lost is in column 3, and your table range is A2, the formula would be: =SORT(A2:C100, {2, 3}, {-1, 1})
@aprintojoss8079Ай бұрын
@excelkid Thak you for your guidance .... It's work but couldn't be automatically when the data change.
@kazakhsmithАй бұрын
Thanks, works, but what if blank cells in the range?
@excelkidКүн бұрын
Great question! Blank cells in the range can indeed affect the result depending on the formula you're using, so let me explain how to handle them. By default, the COUNTIF function treats blank cells as a valid entry and will count them if they are part of the range. For example, if your range contains blanks, COUNTIF(data, data) will include those blank cells, which might lead to unexpected results. To ignore blanks, you can modify your formula slightly by adding a condition to exclude them. For example: =COUNTIF(data, cell_reference) becomes =IF(cell_reference<>"", COUNTIF(data, cell_reference), 0) This checks if the cell is not blank (<>"") before counting it. If you're using the formula =1/COUNTIF(data, data) to calculate proportions, you’ll also need to exclude blanks. Wrap it with an IF condition like this: =IF(cell_reference<>"", 1/COUNTIF(data, data), 0) This ensures that blank cells contribute "0" rather than being incorrectly included in the calculation. If you're using the UNIQUE function to list unique values and their counts, it automatically excludes blank cells from its result. However, when combining it with COUNTIF, make sure to handle blanks explicitly: =IF(cell_reference<>"", COUNTIF(data, cell_reference), "") This way, blanks won’t clutter your results. If you’re using Excel 365 or Excel 2019, the FILTER function is a powerful tool for excluding blanks before any calculation. For example: =FILTER(data, data<>"") This creates a clean range without blanks, which can then be used in further formulas like COUNTIF or SUM. Ignoring blanks ensures your results are accurate and your formulas don’t inadvertently count empty cells as meaningful entries. For example, if you’re calculating the frequency or proportion, including blank cells could skew your data and lead to misleading interpretations. I hope this helps! If you’d like a specific example tailored to your dataset, feel free to ask-I’d be happy to assist further.
@krishnatate4765Ай бұрын
Thank you so much sir
@jefffostertruckingАй бұрын
Thanks for the help!!
@excelkidКүн бұрын
Thanks for your feedback!
@SCIQUEST-n3cАй бұрын
Not working
@excelkidАй бұрын
Please try this solution, it uses regular Excel functions only: exceldashboardschool.com/count-unique-text-values-in-a-range/ UTEXT is a part of our free function library: exceldashboardschool.com/custom-functions-add-in/
@KSD-tuvАй бұрын
i can't find file download
@excelkidАй бұрын
exceldashboardschool.com/custom-functions-add-in/
@minhnhatnguyenkhoa9477Ай бұрын
why after split, the calculation or formular not working?
@excelkidАй бұрын
Hi, I'll check it. By default the "Keep source formulas in Outputs" checkbox is active. (Step 4)
splitter add in is not there. the link takes me to another page to download DataXL add in via which you can split a sheet into multiple sheets in the same workbook but not separate files/workbooks
@excelkid2 ай бұрын
Hi, if you have an installed DataXL add-in, locate the Worksheets Tab and choose the "Split Sheets to Files" command.
@ItsMeKhalid2 ай бұрын
@@excelkid that saves the existing multiple sheets as separate files. I have one sheet in my workbook that i need to split into separate workbooks/files. According to this video, Splitter has the option to do so, although he split the table into sheets within the same workbook. But the option was there in the Splitter window. With DataXL, you need to split your data into sheets then split the sheets into separate files. Splitter is much easier. So, is splitter still available to download? Thanks
@@excelkid I downloaded that file, but DataFX was added, but DataXL was not. how do I do?
@excelkid2 ай бұрын
Hi, we are talking about two different tools. DataXL is a productivity tool, while DataFX is a function library. You can download and install them simultaneously.
@fulljsu3glitches2 ай бұрын
function does not work
@excelkid2 ай бұрын
The function is a part of our custom library, it is free. exceldashboardschool.com/free-excel-add-ins-tools/
@The04210162 ай бұрын
Thank you so much.
@AeonQuasar2 ай бұрын
I had this issue recently, but I must say I rather prefer the Unique formular instead. =Unique(yourlist) then you get some new numbers that are only counted once, and if you hold over these numbers you can see how many numbers total presented. Much quicker and less complex.
@diegorodriguezp2707Күн бұрын
Hi, excuse me but can i see how many times are repeated? I just see the list that it's created but no how many? Please, can you explain it in detail how. Thank you...
@excelkidКүн бұрын
Thank you for your question! It's a common point of confusion, so let me break it down for you step by step and explain exactly how the solution in the video handles not just creating a list of unique items but also calculating how many times each item is repeated. First, the formula used in the "Frequency" column (e.g., =1/COUNTIF(data,data)) may seem a bit abstract, so here's what's happening: Identifying Repetition: The COUNTIF(data, data) part calculates how many times each value appears in the dataset. For example, if "10" appears 4 times, COUNTIF will return 4 for each occurrence of "10." Calculating Proportions: By taking 1/COUNTIF(data, data), we invert this count to calculate the "proportion" of each instance within the dataset. So, if "10" appears 4 times, each occurrence contributes 1/4 = 0.25 to the overall calculation. Summing Unique Values: In the column labeled "Count Unique," the formula =SUM(1/COUNTIF(data, data)) sums these proportions, effectively counting how many unique values exist in the dataset. Now, if your goal is simply to see how many times each value is repeated (rather than its proportion), you can use the COUNTIF function directly: Add a new column titled "Repetitions." Use the formula =COUNTIF(data, cell_reference) where data is your range and cell_reference is the cell with the value you want to count. For instance, if "10" appears 4 times, this formula will return "4." This way, you’ll have a clear view of the count of each unique value in your dataset. Lastly, if you’re working with newer versions of Excel, you could combine UNIQUE with COUNTIF to create a dynamic table of unique values and their respective counts: Use =UNIQUE(data) to create a list of unique values. In the next column, use =COUNTIF(data, cell_reference_from_unique_column) to calculate how many times each unique value appears. I hope this clears things up for you! If you need further explanation or want me to walk you through a specific example, feel free to ask-I’m happy to help!
@excelkidКүн бұрын
Hello! Thank you for sharing your thoughts and preference for the UNIQUE function-it’s indeed a fantastic tool introduced in recent Excel versions. However, it seems there might be a misunderstanding about the context and purpose of the solution shown in this video, so allow me to clarify why the COUNTIF-based method might be more appropriate in certain scenarios. The video specifically demonstrates how to calculate the frequency of each unique value in a dataset, which is quite different from merely listing unique values. While the UNIQUE function is excellent for generating a distinct list of items, it does not inherently provide a way to compute their frequency or proportion relative to the entire dataset. For instance, the formula =SUM(1/COUNTIF(data,data)) not only counts unique values but also helps derive the proportion or "frequency share" of each item-a capability not directly supported by UNIQUE without combining it with additional formulas. Another consideration is compatibility. The UNIQUE function is part of the newer dynamic array functions. If someone is working on an older version of Excel, the COUNTIF approach remains a universally compatible and highly flexible alternative. Lastly, while UNIQUE may appear simpler in some contexts, its functionality doesn't cover the same breadth as the formula used in this video. The COUNTIF approach elegantly combines multiple tasks-counting unique values, calculating frequencies, and creating dynamic results-all in a single formula, making it particularly suitable for more advanced or nuanced data analysis. In summary, the UNIQUE function is excellent for quickly isolating distinct values in modern Excel environments, but it's not a direct substitute for the solution shown here. Different tools have different strengths, and understanding when to use each is key to maximizing Excel's potential. Hope this clears up the confusion and helps you see the value of both methods! Let me know if you have further questions-I’d be happy to discuss more Excel tips!
Best explanation of vstack and filter function without all the background bloat
@julietrail4642 ай бұрын
Doesn't work, just filles in #NAME?
@ramharir32 ай бұрын
Excellent Video
@TheBlueEyedG2 ай бұрын
I am using this formula, to count how many people live in a province, but not counting duplicate addresses. I am doing this for each province. I am getting a 1 for a result when I know it should be zero. How can I fix it? . Thank you
@pawanbodkhe62562 ай бұрын
I am also facing same challange
@nbjamspice2 ай бұрын
You just saved my data from my everlasting frustration. I followed other tutorials using RemoveDupeWords, RemoveDupeChar, etc and none of them worked. I did another search,, and a bunch of videos popped up, and I selected this one and it worked in one step.. Thank you so much.
@igorsvrublevskis2 ай бұрын
Regret to say it doesn't work. In your video, 00:33 I have "sheet1", "sheet2" and "sheet3" in "worksheets" folder. But in your video you have "sheet1", might be because of this. Anyhow thank you.
@valdukasm2 ай бұрын
Excel do not accept this formula ("Theres a problem with a formula"), I wonder what I'm doing wrong.
@papsylabs27592 ай бұрын
How did you write the text in a single cell with two formats - bold and regular?
@kritikle3 ай бұрын
This i great but what if you want it to output something if its less than the lower limit and output something else if it is more than the upper limit?