I have a range that is B3:B500 I want to change the value in each cell in that range The range however, is dynamic so I need to look from B3 to last row
First: How do I get it to change the range to work to last row rather than preset range?
Second: I want to change each individual cell value to something like this:
myCell.Value = "=" & Chr(34) & Chr(61) & myCell.Value & Chr(34)
How do I get it to go through cell by cell to make change to each cell in the "dynamic" range we just created?
Appreciate all the help I can get... pretty new at VBA so please bear that in mind and keep it simple :)
I.e. Cell b3 contains: "ASP" (Text only) Change to: ="="ASP" (formula instead giving result =ASP)