My line of code is
df1<-rbind(df1,assign(paste(x,"_name_",_Date,sep=""),Result))
Basically
assign(paste(x,"_name_",_Date,sep=""),Result)
is the same as
df2
When i do
df1<-rbind(df1,df2)
it works but this needs to be dynamic and constantly changing as i do these updates weekly.