Importing values from excel into VBA -
is possible pull value excel sheet vba, use calculations export calculated value specific cell in excel sheet?
yes possible, here's how (one of many methods) following code assumes running within excel.
this gets value
dim cellcontent string cellcontent = worksheets("asheet").range("a6").value
and sets it
worksheets("asheet").range("a6").value = "foo"
hope helped
Comments
Post a Comment