Help with Macros in Excel
Closed
ack1
Posts
3
Registration date
Tuesday February 2, 2010
Status
Member
Last seen
February 4, 2010
-
Feb 3, 2010 at 05:18 PM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - Feb 5, 2010 at 04:39 AM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - Feb 5, 2010 at 04:39 AM
Related:
- Help with Macros in Excel
- Macros in excel download - Download - Spreadsheets
- Number to words in excel - Guide
- Marksheet in excel - Guide
- How to take screenshot in excel - Guide
- Excel free download - Download - Spreadsheets
3 responses
rizvisa1
Posts
4478
Registration date
Thursday January 28, 2010
Status
Contributor
Last seen
May 5, 2022
766
Feb 3, 2010 at 06:13 PM
Feb 3, 2010 at 06:13 PM
1. You can do without macro also
in cell B1 you can have this formula
=IF(COUNTIF(C:C,C1)=1,"No Match","")
so if there is unique value in cell c1, it will say no match, else it will remain blank
2. could you elaborate what you are saying
3. I think one of the best way to do macro is to use the macro recording. It will make a template for you and then you can modify it to your likening and make it more general or what ever the case may be
in cell B1 you can have this formula
=IF(COUNTIF(C:C,C1)=1,"No Match","")
so if there is unique value in cell c1, it will say no match, else it will remain blank
2. could you elaborate what you are saying
3. I think one of the best way to do macro is to use the macro recording. It will make a template for you and then you can modify it to your likening and make it more general or what ever the case may be
ack1
Posts
3
Registration date
Tuesday February 2, 2010
Status
Member
Last seen
February 4, 2010
Feb 4, 2010 at 09:50 PM
Feb 4, 2010 at 09:50 PM
I have a spreadsheet and I want a macro to find the last row and then copy it to Row 3. Can anyone help me with a macro that will do this?
rizvisa1
Posts
4478
Registration date
Thursday January 28, 2010
Status
Contributor
Last seen
May 5, 2022
766
Feb 5, 2010 at 04:39 AM
Feb 5, 2010 at 04:39 AM
to find last row, i find the best way is to use this formula
lets say col A will be the longest col of alll. then you can just look at max row of col A to know what is the last row. to do that you would do
in macro, you can do like this
cells(65536,1).end(xlup).row
lets say col A will be the longest col of alll. then you can just look at max row of col A to know what is the last row. to do that you would do
in macro, you can do like this
cells(65536,1).end(xlup).row
Feb 3, 2010 at 07:07 PM