NombreHojanPos ="$0$31" right now but it changes,
I want to paste =$0$31 into the cell d15 of my new sheet, so Whenever I change it on the original list, it will change here too.
I can't seem to manage to insert this cell reference. I know it must be something easy, but I am a beginner and completely self taught
This is what I have so far:
NombreHojanPos = Cells(lastrow + 1, 15).Address
'copiar Certificado
Sheets("Certificado").Select
Sheets("Certificado").Copy After:=Sheets(3)
ActiveSheet.Name = NombreHojan
Sheets(NombreHojan).Select
Range("d15").Select
Range("d15").Value = NombreHojanPos.Value
I want to paste =$0$31 into the cell d15 of my new sheet, so Whenever I change it on the original list, it will change here too.
I can't seem to manage to insert this cell reference. I know it must be something easy, but I am a beginner and completely self taught
This is what I have so far:
NombreHojanPos = Cells(lastrow + 1, 15).Address
'copiar Certificado
Sheets("Certificado").Select
Sheets("Certificado").Copy After:=Sheets(3)
ActiveSheet.Name = NombreHojan
Sheets(NombreHojan).Select
Range("d15").Select
Range("d15").Value = NombreHojanPos.Value