M
Mr. Smith
Hi I try this code, but I will not work.
sub selectnamedrange(fblock as Integer)
dim frow_string
frow_string = "f" & fblock & "_frow"
Range(frow_string).Select
' Which is translated into Range("f1_frow").Select
' f1_frow is a named range in the current worksheet.....
' The sub contains more code, but this is the part that does not work....
end sub.
Any hints appreciated
Mr. Smith
sub selectnamedrange(fblock as Integer)
dim frow_string
frow_string = "f" & fblock & "_frow"
Range(frow_string).Select
' Which is translated into Range("f1_frow").Select
' f1_frow is a named range in the current worksheet.....
' The sub contains more code, but this is the part that does not work....
end sub.
Any hints appreciated
Mr. Smith