User Posts: Musiha Mahfuza Mukta
0
How to Find Intercept of Two Lines in Excel (3 Suitable Ways)
0

An intercept of two lines represents the solution for these equations and you may need to find that point using Excel. So, if you are looking for how to find ...

0
[Fixed!] Excel MOD Function Not Working (3 Issues with Solutions)
0

Sometimes you may need to use the MOD function in Excel. Eventually, the MOD function may not be working in Excel. In that case, if you are looking for the ...

0
How to Truncate Text from Left in Excel (5 Suitable Ways)
0

When you have a big dataset with text as cell values, then you may need to shorten the text in Excel. Basically, you can truncate a text either from left, from ...

0
How to Calculate Delta E Color in Excel (4 Suitable Methods)
0

If you want to find out the color difference between two samples, then you should calculate Delta E Color in Excel. So, if you are looking for how to calculate ...

0
How to Use Excel Exponential Function of Base 10 (6 Examples)
0

Sometimes you may need to use an exponential function. Furthermore, if you are a researcher then most of the time you may need to use the exponential function. ...

0
How to Abbreviate Billions in Excel (6 Easy Methods)
0

When you have a large number as a cell value for monetary purposes, then you may need to abbreviate Billions in Excel. So, if you are looking for how to ...

0
How to Truncate Text in Excel (6 Suitable Methods)
0

When you have a big dataset with text as a cell value, then you may need to truncate text in Excel. So, if you are looking for how to truncate text in Excel, ...

0
How to Use Multiple Tags in One Cell in Excel (4 Suitable Methods)
0

Filtering becomes indispensable when you have a larger and more complicated dataset. Retrieving the desired data is quite time-consuming from such a dataset. ...

0
How to Use SLM Method of Depreciation Formula in Excel
0

Depreciation is a very common term in the case of assets. In general, it is the decline of an asset over a certain period of time. There are many methods to ...

0
How to Convert Text to Columns in Excel with Multiple Spaces
0

Sometimes you may have a dataset with all the information stored within one column using spaces, but you want to keep them within different columns. So, if you ...

0
How to Create a Fillable PDF from Excel (2 Suitable Ways)
0

If you are looking for how to create a fillable PDF form from Excel, then you have come to the right place. Today, in this article, I’m going to tell you how ...

0
How to Lookup ZIP Code in Excel (4 Suitable Methods)
0

If you are searching for how to look up a ZIP code for the name of a country or city in Excel, then you have come to the right place. Today, in this article I ...

0
Excel Chart Disappears When Data Is Hidden (3 Solutions)
0

Sometimes for data visualization, you may need to use an Excel chart. But when you hide your data, your chart may disappear. So, if you find the solutions of ...

0
How to Map Excel Data by ZIP Code (2 Easy Methods)
0

If you are searching for how to Map Excel data by ZIP code, then you have come to the right place. Today, in this article I will explain how to map Excel data ...

0
COUNTIF Between Two Values with Multiple Criteria in Excel
0

Sometimes you may need to use the COUNTIF function between two values with multiple criteria. So, if you are looking for the use of a COUNTIF function between ...

Browsing All Comments By: Musiha Mahfuza Mukta
  1. Reply Avatar photo
    Musiha Mahfuza Mukta Mar 27, 2023 at 1:53 PM

    Thank you, CARLOS for your comment. You have to use the correct array (Sales Rep
    or B5:B14) in INDEX function and Rank Column (D5:D14) in MATCH function. Also, while using the Fill Handle icon, you have to freeze both arrays. The most important part, you must write Rank 1,2,3.. manually in General format in F column.
    There may have extra space or Apostrophe (‘) in the F column where you insert Rank numbers manually. You should remove all extra spaces.
    You can see our article related MATCH function error. The link is: https://www.exceldemy.com/excel-match-function-not-working/#Case_1_NA_Error
    For getting basic idea of INDEX-MATCH function you can see the examples from this article https://www.exceldemy.com/excel-index-match-example/
    Still, you are facing the problem then please comment with your used formula and sample dataset.
    Regards
    Musiha Mahfuza Mukta| Team Exceldemy.

  2. Reply Avatar photo
    Musiha Mahfuza Mukta Mar 27, 2023 at 12:44 PM

    Thanks, KYLE, for your query. If there are identical values, then it will give same Rank. Also, the RANK function will skip one Rank. For your better understanding, I’m changing the sales value of Janifer to $9158. So, Zuschuss and Janifer get the same rank (2nd). Thus, the 3rd rank will be missed. Here, you must re-write the Rank of F7 cell to “2” and change the array for INDEX-MATCH function using in G7 an H7 cell. Basically, you need to set the array without Zuschuss information. Below, I have attached the whole scenario. getting duplicate rank
    There is another way, if you want to get unique Rank for all. Like Zuschuss comes first than Janifer so Zuschuss will get 2nd rank and Janifer will get 3rd rank. In this case, you just need to change the formula in D column given below: =RANK(C5,$C$5:$C$14,0)+COUNTIF($C$5:C5,C5)-1
    You don’t need to change the array of INDEX-MATCH function. getting unique rank
    Regards
    Musiha Mahfuza Mukta| Team Exceldemy

  3. Reply Avatar photo
    Musiha Mahfuza Mukta Mar 27, 2023 at 11:41 AM

    Hi ATIF, Thanks for your comment. Here, I made a dataset keeping the Text value in A column, Date value in B column and Counter will be in C column. If you provide your Excel file, then it will be more useful. As per my understanding, I am providing the following VBA code.
    From Developer tab >> go to Visual Basic >> Insert a Module >> copy the code in that >> from Macros >> Run the code.
    code for days counter

    Sub Days_Counter()
    Count = 0
    For i = 1 To 11
    If Range("B1").Cells(i) <> Range("B1").Cells(i + 1) _
    And Range("A1").Cells(i) = "Normal" Then
        Count = Count + 1
        Range("C1").Cells(i) = Count
    Else: Range("C1").Cells(i) = 0
    End If
    Next i
    End Sub

    You can see the outcome below.
    output
    Where the counter counts single value for same date. I have highlighted the same date. Also, for “Abnormal” text the counter didn’t count.
    In the code, you must mention total Row number of your dataset in For Next loop.
    If you want only the text part, you can remove this portion

    Range("B1").Cells(i) <> Range("B1").Cells(i + 1)

    from code.
    Hopefully this will work. If you are still facing problem, then please comment with more details or the sample dataset.
    Regards
    Musiha Mahfuza Mukta| Team Exceldemy

  4. Reply Avatar photo
    Musiha Mahfuza Mukta Mar 9, 2023 at 12:11 PM

    Thank you, MICHAEL KAIR for your comment. As per my understanding, there is no duplicate code. Actually, I have written the code part by part with detail description. Also, in the end, I have attached the complete code for making the Date Picker. That’s why, it seems to you the code is used twice but actually, the last one in Step 7 (last code) is the complete one. You should use only that one in your module. And the other codes are for explanation purpose.
    I hope this will solve your problem. Please let us know if you face any further problems.

    Regards,
    Musiha Mahfuza Mukta,
    ExcelDemy

  5. Reply Avatar photo
    Musiha Mahfuza Mukta Feb 27, 2023 at 10:58 AM

    Thank you ZOYSA for your comment. Below, I have attached two formulas for your problem.
    I have written the data from the A2 cell and C2 cell. According to your question, I have considered the dataset till A10 and C10.
    Firstly, write the below formula in the E2 cell or the cell from where the NAME will be started.
    =IF(A2=”TOM”,C2,””)

    Then copy this formula up to E10 or your dataset’s end cell.
    Then use another formula in the F4 cell.
    =SUM(E2:E10)

  6. Reply Avatar photo
    Musiha Mahfuza Mukta Feb 19, 2023 at 12:33 PM

    Thank you PHUC YU for your comment. Actually, I have tried these methods too and the methods are working perfectly. Here, you can also zoom out the Excel file directly by clicking the Minus(-) sign situated right most corner of the file.

    In case of, you are using an older version than 2013 of Excel then these methods may not work. Or, if you have any bugs or issues in your laptop then these would not work. I thing you were facing a different problem which is not related to this articles.

  7. Reply Avatar photo
    Musiha Mahfuza Mukta Feb 19, 2023 at 11:13 AM

    Thank you ROB for your comment. Here, ROW function is working as the row index number of the INDEX function. Actually, it should be ROW(B2:D9)=> {2;3;4;5;6;7;8;9} which denotes respectively the 2nd, 3rd, 4th…. up to 9th row number of this ($B$4:$D$12) array of INDEX function. Here, we ignore the 1st row of ($B$4:$D$12) this array as 1st row contains the Club Name’s not any player Name’s.
    On the other hand, you have to use B4:D4 row in the MATCH function which will search for the Club Name’s and act as the column index number in the INDEX function.
    Say, when you choose Borussia Dortmund or C4 cell from the list of C14 cell then the MATCH function will return 2 and thus the column index number of INDEX function will be 2 so INDEX function will give all the rows (except 1st one) of 2nd column of the given array which means all the player name’s of the Borussia Dortmund club.
    So, you can use the formula like the below one. =IFERROR(INDEX($B$4:$D$12,ROW(B2:D9),MATCH($C$14,$B$4:$D$4,0)),””)
    Use of INDEX, MATCH, ROW functions

  8. Hello MP ROY,
    Thank you for your comment. I have tried these codes and they are working perfectly, except the code in Example3. For that particular code, you can use a new workbook. While I was using a new workbook the code has been perfectly worked there. But you have to be careful about the name of worksheet. You have to use exact worksheet number and name in the code.
    Regards,
    Musiha
    Team ExcelDemy

  9. Hello, J KUMAR.
    Thank you for your comment. I have tried the code too and the code is absolutely right and perfectly working. But you are facing problem because most probably your device is running out of virtual memory. So, when you are trying this code in Excel, at that time you should close all other applications. Also, you should use an individual module for this code.

  10. Hello, CHRIS.
    Thank you for your comment. Actually, with the help of method 4, you are converting numbers into text. But when you re-entered any new value then the cell will hold that value excluding the apostrophe. Basically, the past value along with the apostrophe completely had gone away. So, if you want to keep the apostrophe then you should select that cell (containing new value) and run the Macros again. Then, you will see the apostrophe again with the new value.

5 Excel Hacks You Never Knew

Genius tips to help you unlock Excel's hidden features

FREE EMAIL BONUS

ExcelDemy
Logo