User Posts: Rafiul Hasan
0
How to Put Space in Text Box in Excel (2 Cases)
0

It is a common scenario to add spaces between texts in an Excel cell. You have added blank spaces, applied the find and replace feature in the context of ...

0
Automated Data Scraping from Websites into Excel
0

Sometimes you may need to import data from websites and show it in an Excel file. Most of the time, this happens for data entry purposes. So, if you are a data ...

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

A business organization purchases assets for its own purpose, The assets may be objective (i.e. products) or abstractive (i.e. services). It uses the purchased ...

0
How to Calculate Working Capital Days in Excel (with Easy Steps)
0

Working Capital and Working Capital Days are very frequently used terms in any business model. A proper illustration of these two terms is undoubtedly ...

0
How to Add Table to Data Model in Excel (3 Effective Ways)
0

Excel provides you with certain features for creating data models. You may also need to add a table to the data model. Hold on if you are on this way! This ...

0
How to Update Charts in PowerPoint from Excel Automatically
1

If you are working for a company or organization, presenting your business ideas and thoughts about various projects and their updates is very common to you. ...

0
How to Create Venn Diagram from Pivot Table in Excel (2 Ways)
0

Pivot Table is used for filtering one or multiple types of specific data from a table containing many data in Excel. And Venn Diagram shows how one type of ...

0
How to Create Data Model Relationships in Excel (3 Ways) 
1

The Data Model is a special feature of Excel that allows users to gather data from various sources and create a relationship between them. Specifically, the ...

0
How to Use SUMIF, COUNTIF and AVERAGEIF Functions in Excel
-1

Dealing with a set of data consisting of texts as well as numerical values of a company or an organization, it is a common scenario to feel the necessity of ...

0
VLOOKUP Is Returning Just Formula Not Value in Excel
0

The VLOOKUP function is used to extract a value from a lookup array. Due to some mistakes encountered in the formula, the VLOOKUP function may keep returning ...

0
Dynamic Ranges with OFFSET and COUNTA Functions in Excel
0

Looking for ways to create dynamic range by applying OFFSET and COUNTA functions in Excel? Don’t worry! You have landed in the right place. In this article, I ...

0
[Solved] Excel Formatting Not Working Unless Double Click Cell
0

While working on an Excel file, it is a common phenomenon that sometimes cell format doesn’t work unless you double-click the cell. Most of the cases it ...

0
How to Import CSV Data into Excel (4 Handy Approaches)
0

A CSV file is where the data is separated by commas. It runs faster than an Excel file. Sometimes, you need to import CSV data into Excel file for transforming ...

0
[Solved] Excel Copy Paste Loses Formatting
0

When you copy and paste data in a worksheet, sometimes Excel loses formatting after performing the task. There are several ways how you can avoid this ...

0
How to Copy and Paste Formulas Without Changing Cell References in Excel
0

When you copy formulas from one cell to another, Excel automatically changes the cell reference as per the selected cell by default. This feature helps to ...

Browsing All Comments By: Rafiul Hasan
  1. Hi KEN,
    This may encounter from several reasons.
    1. If you have protected the worksheet or specific cells, it can prevent changes to the font settings. Try unprotecting the cells or the entire worksheet to see if that resolves the issue.
    2. If there are any conflicting formatting applied to the cells, it might cause the barcode font to revert. Select the cells and clear any formatting such as bold, italic, or color changes. Then, set the font to “Code128” again.
    3. Ensure that the page setup and print preview are correctly configured. Check the scaling options to make sure that the labels fit properly on the A4 sheet. Adjust the margins and other settings as needed to accommodate 51 labels per sheet.
    4. If the above steps don’t solve the problem, try creating a new Excel file and follow the barcode printing steps from scratch. This can help identify if the issue is specific to your existing file.

    Regards,
    Rafiul Hasan
    ExcelDemy Team

  2. Hi ALLISON,
    If you want to use wildcards with the second formula, you need to modify the dataset a little bit. Let’s say, we have short form of country name in the “Country” column. Our aim is to find the name of the person aged “38” and whose country is “India“. You can use the following formula:
    =INDEX($B$5:$B$17, SMALL(IF(COUNTIF($F$6, $C$5:$C$17)*COUNTIF($G$6,$D$5:$D$17&”*”),ROW($B$5:$D$17)-MIN(ROW($B$5:$D$17))+1), ROW(A1)), COLUMN(A1))
    Use of Wildcards
    We have used the wildcards character ampersand (*) in the second COUNTIF portion: COUNTIF($G$6,$D$5:$D$17&”*”)
    As we want to find multiple output so it will result from an array. So, the $D$5:$D$17 acts as criteria as we can use wildcards character in criteria. This formula will match the short form mentioned in the country column and match it with criteria and extract the Name.
    Hope you find this helpful.

    Regards
    Rafiul Hasan
    Team ExcelDemy

  3. Hi SINGGIH WAHYU N,
    You can use VBA code for serving your requirement.
    1. Select the merged cell(s) that contain data you want to copy.
    2. Open the Visual Basic Editor by pressing Alt + F11.
    3. Insert a new module by selecting “Insert” -> “Module” from the menu bar.
    4. In the new module, enter the following code:

    Sub CopyMergedCells()
        Dim mergedRange As Range, cell As Range
        Dim unmergedRange As Range, destCell As Range
        Set mergedRange = Selection 'Assuming the merged cells are currently selected
        Set unmergedRange = mergedRange.Cells(1).Resize(mergedRange.Rows.Count * mergedRange.Columns.Count, 1)
        Set destCell = Application.InputBox(prompt:="Select the top-left cell of the destination range", Type:=8)
        If destCell Is Nothing Then Exit Sub 'User cancelled the selection
        For Each cell In unmergedRange.Cells
            If cell.Value <> "" Then
                destCell.Value = cell.Value
                Set destCell = destCell.Offset(1, 0)
            End If
        Next cell
    End Sub

    5. Run the code and a prompt will ask you to select the first cell of destination range. Select a cell where you want to paste values and you will get output.

    Hope this help you. If you don’t want to use VBA, you have to first paste values and then use the “Go To Special” (pressing CTRL+G) dialog box and then select “Blanks”> click “OK” to remove blank cells.

    Regards.
    Rafiul Hasan
    Team ExcelDemy

  4. Hi DARRELL,
    Congratulations on your new project. Be confident, you can make it. Based on your selections, you may use any of the following to get resulting list:
    1. IF function: You can use the “IF” function to create a formula that checks if certain criteria are met and return the appropriate value. For example, if you have a pick list for materials and another for color, you can use an “IF” function to generate a list of materials that match the selected color.
    2. VLOOKUP function: The “VLOOKUP” function can be used to search for a value in a table and return a corresponding value. You can set up a table with all the possible combinations of selections and use “VLOOKUP” to generate the resulting list based on the selections made.
    3. FILTER function: The “FILTER” function can be used to filter a list based on certain criteria. You can set up a table with all the materials and their attributes (such as color, size, etc.) and use “FILTER” to generate a list of materials that match the selected attributes.
    4. PivotTable: Pivot tables can be used to analyze and summarize data in a table. you can set up a table with all the selections made and your corresponding materials and use a pivot table to generate a list of materials based on the selections made.

    These are just a few options you can consider. You will need to choose the one that works best for your specific situation. Don’t hesitate to contact with us if you face any problem. Best of luck.

    Regards
    Rafiul Hasan
    Team ExcelDemy

  5. Hi NOUR,
    Thanks for the appreciation.
    As per your requirement, it is possible to allow multiple users to access and edit a workbook on a network computer. Here are some steps you can follow in this regard:

    1. Save your workbook on a shared network drive that all users have access to.
    2. Restrict editing access for other users to ensure only authorized users can edit the workbook.
    3. Create a login form that allows users to enter their credentials to access the userform. You can store user credentials in a separate worksheet within the workbook or use an external database.
    4. Use VBA code to pull the necessary data from the shared workbook and display it to the userform.
    5. When a user makes changes to the data in the userform, use VBA code to write the changes back to the shared workbook.
    6. Implement a save feature that automatically saves changes made to the shared workbook when the userform is closed.
    7. Create a backup plan to ensure data is not lost in case of system failure or network issues. This can include regular backups or saving a copy of the workbook in a secure location.
    8. Test the userform with different user accounts to ensure it works as intended and all users can access and edit the shared workbook.

    Hope this guide helps you to approach and solve the issue you’re facing. Actually it is not possible to give an exact solution without checking the Excel file. Most probably you need physical assistance in this regard. Let us know if you have any additional questions or concerns. You can also send your Excel file to our official mail address: [email protected]
    Have a great day!

    Regards
    Rafiul Hasan | ExcelDemy Team

  6. Hi DIEP TRAN,
    The “Yes to all” button is a feature in Excel that allows you to apply a selected action to all the occurrences of the same conflict during a process. This button is usually available in the Name Manager dialog box, which pops up when you create, edit or delete names in your workbook.

    The availability of the “Yes to all” button may vary depending on the version of Excel you are using. However, in most versions of Excel, including the latest version, which is Excel 2021, the “Yes to all” button should be available in the Name Manager dialog box.

    If you are not seeing the “Yes to all” button in the Name Manager dialog box, it could be that the dialog box is not showing all the options. You can try expanding the dialog box to see if the “Yes to all” button is hidden or check your Excel settings to ensure that the option is enabled.

    Overall, it’s best to consult the specific version of Excel you are using or refer to the documentation to learn more about the availability and functionality of the “Yes to all” button in Excel.

    Regards
    Rafiul | ExcelDemy Team

  7. Hi JEFF,
    Thanks for your concern. Actually, all the methods here explained are very easy to understand. Considering the situation, you have to choose the best-suited method for serving your purpose. If you don’t want to use any formula, then you can use Method 1.

    Regards,
    Rafiul | ExcelDemy Team

  8. Hello AARON MWALE,
    Thanks for your comment. Sorry to hear that you’re facing issues with Excel.
    When Excel hangs and starts an Undo action, that means Excel is trying to process a large amount of data or executing a complex operation. This may cause the program to be unresponsive for a period of time while it completes the task.

    In order to stop the undo action, you can try pressing the “Esc” key on your keyboard. If this does not work, you can try pressing “Ctrl” & “Break” on your keyboard. If don’t find these helpful, you may need to wait for Excel to finish the operation before you can regain control of the program.

    To prevent Excel from hanging and starting an Undo action in the future, you can try the following:

    1. Limit the amount of data you are working with at one time. If you are working with a large amount of data, try breaking it up into smaller chunks that are easier for Excel to handle.

    2. Close any unnecessary programs or applications running in the background. This can free up system resources and improve Excel’s performance.

    3. Disable any add-ins or macros that may be causing Excel to slow down or become unresponsive.

    4. Check for and install any available updates for Excel. Updates often include bug fixes and performance improvements that can help prevent Excel from hanging in the future.

    5. Consider upgrading your computer hardware if it is outdated or underpowered. Excel can be resource-intensive, and having a fast and capable computer can make a big difference in its performance.

    Hope you find these ways helpful to overcome your issues.

    Regards,
    Rafi
    ExcelDemy team

  9. Dear BILLY,
    Your PDF file should be readable in order to extract data. The application needs to recognize data. Please ensure a readable copy.
    Regards
    ExcelDemy Team

  10. Hi TOM,
    Thank you so much for letting us know. The formula has been edited. Thanks for your concern. Stay connected!

    Regards,
    Rafi
    Author: ExcelDemy Team

  11. Hello STEPH,
    Did you enter any newer data into your pivot table field? With newer or re-entry of data, you need to go to the PivotTable Fields window (at the right corner of the worksheet)-> unmark the corresponding field of your data (i.e. Ship Date for this article) -> right-click on the PivotTable and click Refresh-> again mark the corresponding field that you unmarked a little bit ago.
    Thanks and Regards

  12. Hello SG,
    You can customize the error message. In the Data Validation message box=> Error Alert icon, you can choose “Warning” style from the dropdown list. Now, if you try to input invalid data, the error message will show 3 options asking you whether you want to continue: Yes/No/Cancel/Help. Clicking “Yes” will allow you to proceed with the current value and will not show the error again.

  13. Hello ANN HALL,
    This may happen for different reasons.
    1. Putting two statements in a single line. Check whether this is encountered and send the second statement in a new line.
    2. Absence of parentheses.
    3. Lack of whitespace in front of the ampersand(&) interpret as a long variable. So, put space between the variable and operator(&).

  14. Hi KAREN LING,
    Glad that you liked the template. This template has got fixed interest rate. You can add variable extra payments manually to your Excel file if you need it.
    Regards,
    Rafi (ExcelDemy Team)

  15. Hi JON,
    Thanks for your feedback. Can you please elaborate on your problem?
    What I can say is that paying an extra amount from the minimum will reduce the next payments. You can proceed with your data. You can also share your Excel file with us and we will look into it.
    Regards.
    Rafi (ExcelDemy Team)

  16. Hi ABDUS SALAM,
    An equation is not like a formula as it isn’t supposed to perform any calculation. You can’t enter an equation in a particular cell in Excel just like you do for a formula. What you can do here is that, you can adjust height and width of the “Equation Editor” box or the cell as if it looks like the equation stays in the cell. This can serve your purpose to some extent.
    Regards.

  17. Hi KRISHNENDU,
    Thanks for your comment. An equation is not like a formula as it isn’t supposed to perform any calculation. You can’t enter an equation in a particular cell just like you do for a formula. What you can do here is that, you can adjust height and width of your “Equation Editor” box or the cell as if it looks like the equation stays in the cell. I think this can serve your purpose to some extent.
    Regards.

Advanced Excel Exercises with Solutions PDF

 

 

ExcelDemy
Logo