I'll try to keep this short, but am a newbie to more complicated VBA.
Would love some help and explanation of the logic on creating a macro which does 2 things
1. Looks at a range of data and highlights both the row and the column where a cell has conditional formatting.
Note: The range of data can be actual number format or a percentage and I already have macros which do all of the formattings for me.
2. Then copies all of the selected cells and copies and pastes into an already created sheet named 'changes'.
so far my notes are as follows, please dont judge lol
' #1 . highlight column and row
[SelRow]=ActiveCell.Row
[SelCol]=ActiveCell.Column
'#2. copy paste above
Range (from above unsure what it would end up being called).Copy
Sheet(Changes).Select
ActiveSheet.Paste
Thank you in advance to anyone who fancies helping me out
Eternally grateful BM who needs to help her team who are new to excel
Would love some help and explanation of the logic on creating a macro which does 2 things
1. Looks at a range of data and highlights both the row and the column where a cell has conditional formatting.
Note: The range of data can be actual number format or a percentage and I already have macros which do all of the formattings for me.
2. Then copies all of the selected cells and copies and pastes into an already created sheet named 'changes'.
so far my notes are as follows, please dont judge lol
' #1 . highlight column and row
[SelRow]=ActiveCell.Row
[SelCol]=ActiveCell.Column
'#2. copy paste above
Range (from above unsure what it would end up being called).Copy
Sheet(Changes).Select
ActiveSheet.Paste
Thank you in advance to anyone who fancies helping me out
Eternally grateful BM who needs to help her team who are new to excel