User Posts: Nuraida Kashmin
Sometimes we need to calculate accuracy and precision in Excel. It helps us in statistics and data analysis to avoid significant data loss and minimize the ...
Sometimes we need to Break Links in Excel to make the dataset more efficient. Break Links means to end the connection of the external references. It helps us ...
Sometimes we need to fix cell size in Excel to make the dataset more attractive. By default, every Excel worksheet contains the same-sized cells. We modify ...
Sometimes we need to copy and paste in Excel and keep cell size. It saves a lot of time during work. Also makes the dataset more attractive. In this article, ...
Sometimes we need to fill a column with the same value in Excel. It makes our dataset easy to operate and saves a lot of time. In this article, we are going to ...
For suitable calculation in Excel, sometimes we need to freeze the frame. It makes our dataset easy to operate and saves a lot of time during scrolling. In ...
Sometimes we need to remove semicolon from the worksheet in Excel. Excel has some quick features as well as functions to do so. In this article, we are going ...
Sometimes we need to count text in Excel for many purposes. Different excel functions and formulas make this easy for us. In the article, we are going to learn ...
Sometimes we need to use Excel Conditional Formatting feature on Multiple Columns for quick calculation. This feature can scan the dataset easily and make the ...
We can use the conditional formatting formula with IF in Excel for an easy calculative and attractive worksheet. In this article, we are going to learn how to ...
Sometimes we need to count the duplicates in an Excel pivot table for easy calculation. The Excel pivot table is an amazing feature. Counting duplicates is ...
Sometimes we need to find and highlight duplicate rows based on multiple columns in Excel. It makes the huge dataset attractive and easy to calculate. In this ...
Sometimes for easy calculation, we need to split an Excel sheet into multiple sheets based on rows. In this article, we are going to learn how to do that by ...
Sometimes we input an Excel formula in a worksheet but it’s not working for some reason. It shows a warning prompt instead which mentions Circular Reference. ...
Sometimes we need to trim space or character from an entire text in Excel to make the dataset attractive. We can use different Excel functions like TRIM ...
Hi SHANON,
Please try to apply below VBA Code after selecting the whole dataset:
Sub move_rows()
For Each myCell In Selection.Columns(2).Cells
If myCell.Value = “Closed” Then
myCell.EntireRow.Copy Worksheets(“Sheet2”).Range(“A” & Rows.Count).End(3)(2)
End If
Next
End Sub
You may replace the column number in line 2 according to the placement of your “status” column. Also the sheet name (Sheet2) in line 4 to your required sheet.
Hello CHARLOTTE,
Glad to hear that you liked my article.
Please check this article (Method 7)-
https://www.exceldemy.com/excel-sumifs-with-date-range-and-multiple-criteria/#Method_7_Use_SUMIFS_Function_to_Sum_Between_a_Date_Range_From_Another_Sheet
I hope you will find the solution.
Hi SAM,
Glad to hear that you liked my article.
I think your project is based on the basic application of VLOOKUP. Please check this article (Method 1)-
https://www.exceldemy.com/compare-multiple-columns-in-excel-using-vlookup/#1_Compare_Multiple_Columns_in_Excel_and_Return_Matching_Data_Using_VLOOKUP
I hope it’ll be helpful for you.
Hi SIVA!
You can check this article – https://www.exceldemy.com/delete-same-sheet-from-multiple-workbooks-in-excel-vba/
I hope it’ll be helpful for you.
It’s great to hear you liked the article. You are most welcome. Best wishes.
You can check this article- https://www.exceldemy.com/find-duplicate-values-in-excel-using-vlookup/