how to string together 3 macros with a relative cell...

sadams1

Board Regular
Joined
Aug 19, 2006
Messages
248
Office Version
  1. 365
Platform
  1. Windows
This is another "should be simple!" things but I'm missing something. After combining through threads here & elsewhere, I'm unable to figure how to do the following...

1) there are 3 existing macros I'd like to combine into one macro
2) this new macro would be able to be run in any cell specifically in a column but any row, i.e it would run in C3 that same as C1000

Sounded straightforward for my beginner/intermediate coding skills to hack through.
- I started with the most obvious, "record new macro" but RELATIVE cell references selected. NOPE.
- I have several other macros that can run code in any cell but what I want to do isn't working with any of it
- the stuff here & elsewhere for some reason hasn't turned up anything that I can get to work

My guess is that like usual, someone is going say, "here's 2 lines to do this!" & I'll hang my head in shame yet again.
 
No no, there's no shame in learning how to code. ( I found the VBA syntax frustrating at first, and I'd coded before in other languages).

The macro recorder has limitations. It's a good place to start if you want to see the syntax for what you're trying to automate, but the code it produces usually needs a lot of tidying up to be efficient and succinct.

Perhaps you could start by telling us the three things you're trying to do? And, if it would help our understanding, attach the code you're currently using (even if's not quite working to your requirements).
 
Upvote 0
hello & appreciate the reply! The code does the following:

1) from Mark858
***this formats a range based on another range

2) for Jolivanes
***hide all cells in a range

3) show all cells in a row
same as #2 (changing "true" to false)


Again, this looks straightforward & I'd like to group these into one macro by referencing those 3...it's the "relative" part that gets me
 
Upvote 0
Based on the two threads you refer to, I am guessing (it's far from clear what you're asking):

VBA Code:
Sub Test()
    
    Dim rng1 As Range, rng2 As Range, r As Range
    
    Set rng1 = Range("SomeOtherRange")
    
    On Error Resume Next
    Set rng2 = ActiveCell.Resize(rng1.Rows.Count, rng1.Columns.Count).SpecialCells(xlCellTypeComments)
    On Error GoTo 0
    
    If Not rng2 Is Nothing Then
        For Each r In rng2
            r.Comment.Visible = True
        Next r
    End If
    
End Sub

Given a particular ActiveCell, this makes visible any Notes in the cells in the immediate vicinity of the ActiveCell right and down (based on the size of "SomeOtherRange").

(I assume you're talking about Notes - formerly referred to as Comments - rather than the newer style threaded comments?)

Sorry, I have no idea how any of the comments below relate to the question, or the other threads:

***this formats a range based on another range
***hide all cells in a range
3) show all cells in a row
same as #2 (changing "true" to false)
it's the "relative" part that gets me
 
Upvote 0
Solution
looks good! Greatly appreciated & apologies for not being clear...sometimes this forum makes it a challenge to explain some stuff & obviously this was not a shining moment for me. Regardless I've already worked in the code & it's going to be very useful to the team!
 
Upvote 0

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top