I have a dynamic range that expands when I add new data(naturally). I would like to add code to a button that I have that will adddata to the range when the button is pressed. This is the line of code I amworking with:
My expectation for the code is that when the button ispressed, the text from cell “C2” will be added to the bottom of my dynamicrange called “CompetitorsLOV” which is located on sheet Competitor OverviewData.
Thanks!
Code:
[FONT="Calibri"]Sheets("Competitor OverviewData").Range("CompetitorsLOV").Offset(1, 0).Value =Range("C2").Value[/FONT]
My expectation for the code is that when the button ispressed, the text from cell “C2” will be added to the bottom of my dynamicrange called “CompetitorsLOV” which is located on sheet Competitor OverviewData.
Thanks!